1
2
3
4
5
6#include <common.h>
7#include <command.h>
8#include <env.h>
9#include <fdt_support.h>
10#include <i2c.h>
11#include <init.h>
12#include <netdev.h>
13#include <linux/compiler.h>
14#include <asm/mmu.h>
15#include <asm/processor.h>
16#include <asm/immap_85xx.h>
17#include <asm/fsl_law.h>
18#include <asm/fsl_serdes.h>
19#include <asm/fsl_liodn.h>
20#include <fm_eth.h>
21#include "t208xrdb.h"
22#include "cpld.h"
23#include "../common/vid.h"
24
25DECLARE_GLOBAL_DATA_PTR;
26
27int checkboard(void)
28{
29 struct cpu_type *cpu = gd->arch.cpu;
30 static const char *freq[3] = {"100.00MHZ", "125.00MHz", "156.25MHZ"};
31
32 printf("Board: %sRDB, ", cpu->name);
33 printf("Board rev: 0x%02x CPLD ver: 0x%02x, boot from ",
34 CPLD_READ(hw_ver), CPLD_READ(sw_ver));
35
36#ifdef CONFIG_SDCARD
37 puts("SD/MMC\n");
38#elif CONFIG_SPIFLASH
39 puts("SPI\n");
40#else
41 u8 reg;
42
43 reg = CPLD_READ(flash_csr);
44
45 if (reg & CPLD_BOOT_SEL) {
46 puts("NAND\n");
47 } else {
48 reg = ((reg & CPLD_LBMAP_MASK) >> CPLD_LBMAP_SHIFT);
49 printf("NOR vBank%d\n", reg);
50 }
51#endif
52
53 puts("SERDES Reference Clocks:\n");
54 printf("SD1_CLK1=%s, SD1_CLK2=%s\n", freq[2], freq[0]);
55 printf("SD2_CLK1=%s, SD2_CLK2=%s\n", freq[0], freq[0]);
56
57 return 0;
58}
59
60int board_early_init_r(void)
61{
62 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
63 int flash_esel = find_tlb_idx((void *)flashbase, 1);
64
65
66
67
68
69
70 flush_dcache();
71 invalidate_icache();
72 if (flash_esel == -1) {
73
74 puts("Error: Could not find TLB for FLASH BASE\n");
75 flash_esel = 2;
76 } else {
77
78 disable_tlb(flash_esel);
79 }
80
81 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
82 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
83 0, flash_esel, BOOKE_PAGESZ_256M, 1);
84
85
86
87
88
89 if (adjust_vdd(0))
90 printf("Warning: Adjusting core voltage failed.\n");
91 return 0;
92}
93
94unsigned long get_board_sys_clk(void)
95{
96 return CONFIG_SYS_CLK_FREQ;
97}
98
99unsigned long get_board_ddr_clk(void)
100{
101 return CONFIG_DDR_CLK_FREQ;
102}
103
104int misc_init_r(void)
105{
106 u8 reg;
107
108
109 reg = CPLD_READ(reset_ctl);
110 reg |= CPLD_RSTCON_EDC_RST;
111 CPLD_WRITE(reset_ctl, reg);
112
113 return 0;
114}
115
116int ft_board_setup(void *blob, bd_t *bd)
117{
118 phys_addr_t base;
119 phys_size_t size;
120
121 ft_cpu_setup(blob, bd);
122
123 base = env_get_bootm_low();
124 size = env_get_bootm_size();
125
126 fdt_fixup_memory(blob, (u64)base, (u64)size);
127
128#ifdef CONFIG_PCI
129 pci_of_setup(blob, bd);
130#endif
131
132 fdt_fixup_liodn(blob);
133 fsl_fdt_fixup_dr_usb(blob, bd);
134
135#ifdef CONFIG_SYS_DPAA_FMAN
136 fdt_fixup_fman_ethernet(blob);
137 fdt_fixup_board_enet(blob);
138#endif
139
140 return 0;
141}
142