blob: 8999542a7ddd509b10080c06e60dc2bca8b0c178 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Albert ARIBAUD \(3ADEV\)d275c402015-02-03 18:13:14 +01002/*
3 * Copyright (c) 2014 DENX
4 * Written-by: Albert ARIBAUD <albert.aribaud@3adev.fr>
5 *
6 * Derived from code written by Robert Aigner (ra@spiid.net)
7 *
8 * Itself derived from Beagle Board and 3430 SDP code by
9 * Richard Woodruff <r-woodruff2@ti.com>
10 * Syed Mohammed Khasim <khasim@ti.com>
Albert ARIBAUD \(3ADEV\)d275c402015-02-03 18:13:14 +010011 */
12#include <common.h>
13#include <dm.h>
14#include <netdev.h>
15#include <ns16550.h>
16#include <asm/io.h>
17#include <asm/arch/mem.h>
18#include <asm/arch/mux.h>
19#include <asm/arch/sys_proto.h>
20#include <i2c.h>
21#include <asm/mach-types.h>
22#include <asm/omap_mmc.h>
23#include "cairo.h"
24
25DECLARE_GLOBAL_DATA_PTR;
26
27/*
Albert ARIBAUD \(3ADEV\)d275c402015-02-03 18:13:14 +010028 * Routine: board_init
29 * Description: Early hardware init.
30 */
31int board_init(void)
32{
33 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
34 /* board id for Linux */
Tom Rinicd7b6342017-01-25 20:42:38 -050035 gd->bd->bi_arch_number = CONFIG_MACH_TYPE;
Albert ARIBAUD \(3ADEV\)d275c402015-02-03 18:13:14 +010036 /* boot param addr */
37 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
38 return 0;
39}
40
41/*
42 * Routine: set_muxconf_regs
43 * Description: Setting up the configuration Mux registers specific to the
44 * hardware. Many pins need to be moved from protect to primary
45 * mode.
46 */
47void set_muxconf_regs(void)
48{
49 MUX_CAIRO();
50}
51
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +090052#if defined(CONFIG_MMC)
Albert ARIBAUD \(3ADEV\)d275c402015-02-03 18:13:14 +010053int board_mmc_init(bd_t *bis)
54{
55 return omap_mmc_init(0, 0, 0, -1, -1);
56}
57#endif
58
59#ifdef CONFIG_SPL_BUILD
60/*
61 * Routine: get_board_mem_timings
62 * Description: If we use SPL then there is no x-loader nor config header
63 * so we have to setup the DDR timings ourself on the first bank. This
64 * provides the timing values back to the function that configures
65 * the memory.
66 *
67 * The Cairo board uses SAMSUNG DDR - K4X51163PG-FGC6
68 */
69void get_board_mem_timings(struct board_sdrc_timings *timings)
70{
71 timings->sharing = SAMSUNG_SHARING;
72 timings->mcfg = SAMSUNG_V_MCFG_165(128 << 20);
73 timings->ctrla = SAMSUNG_V_ACTIMA_165;
74 timings->ctrlb = SAMSUNG_V_ACTIMB_165;
75 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
76 timings->mr = SAMSUNG_V_MR_165;
77}
78#endif
79
80static const struct ns16550_platdata cairo_serial = {
Adam Ford2f6ed3b2016-03-07 21:08:49 -060081 .base = OMAP34XX_UART2,
82 .reg_shift = 2,
Heiko Schocher17fa0322017-01-18 08:05:49 +010083 .clock = V_NS16550_CLK,
84 .fcr = UART_FCR_DEFVAL,
Albert ARIBAUD \(3ADEV\)d275c402015-02-03 18:13:14 +010085};
86
87U_BOOT_DEVICE(cairo_uart) = {
Thomas Chouc7b96862015-11-19 21:48:12 +080088 "ns16550_serial",
Albert ARIBAUD \(3ADEV\)d275c402015-02-03 18:13:14 +010089 &cairo_serial
90};
91
92/* force SPL booting into U-Boot, not Linux */
93#ifdef CONFIG_SPL_OS_BOOT
94int spl_start_uboot(void)
95{
96 return 1;
97}
98#endif