blob: 84b85f8b1039e00aeed257080ca4a86fc855c3d6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dave Liu19b247e2008-01-11 18:48:24 +08002/*
3 * Copyright (C) 2007 Freescale Semiconductor, Inc.
4 *
5 * Author: Scott Wood <scottwood@freescale.com>
6 * Dave Liu <daveliu@freescale.com>
Dave Liu19b247e2008-01-11 18:48:24 +08007 */
8
9#include <common.h>
Anton Vorontsovd398b7e2009-06-10 00:25:36 +040010#include <hwconfig.h>
Dave Liu19b247e2008-01-11 18:48:24 +080011#include <i2c.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090012#include <linux/libfdt.h>
Anton Vorontsov13c16a12008-07-08 21:00:04 +040013#include <fdt_support.h>
Dave Liu19b247e2008-01-11 18:48:24 +080014#include <pci.h>
15#include <mpc83xx.h>
Ben Warren052a5ea2008-08-31 20:37:00 -070016#include <netdev.h>
Anton Vorontsov0db0be22009-01-08 04:26:17 +030017#include <asm/io.h>
Anton Vorontsovec821752009-11-24 20:12:12 +030018#include <ns16550.h>
19#include <nand.h>
Dave Liu19b247e2008-01-11 18:48:24 +080020
21DECLARE_GLOBAL_DATA_PTR;
22
23int board_early_init_f(void)
24{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020025 volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
Dave Liu19b247e2008-01-11 18:48:24 +080026
27 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
28 gd->flags |= GD_FLG_SILENT;
29
30 return 0;
31}
32
Anton Vorontsovec821752009-11-24 20:12:12 +030033#ifndef CONFIG_NAND_SPL
34
Dave Liu19b247e2008-01-11 18:48:24 +080035static u8 read_board_info(void)
36{
37 u8 val8;
38 i2c_set_bus_num(0);
39
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020040 if (i2c_read(CONFIG_SYS_I2C_PCF8574A_ADDR, 0, 0, &val8, 1) == 0)
Dave Liu19b247e2008-01-11 18:48:24 +080041 return val8;
42 else
43 return 0;
44}
45
46int checkboard(void)
47{
48 static const char * const rev_str[] = {
49 "0.0",
50 "0.1",
51 "1.0",
52 "1.1",
53 "<unknown>",
54 };
55 u8 info;
56 int i;
57
58 info = read_board_info();
59 i = (!info) ? 4: info & 0x03;
60
61 printf("Board: Freescale MPC8315ERDB Rev %s\n", rev_str[i]);
62
63 return 0;
64}
65
66static struct pci_region pci_regions[] = {
67 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020068 bus_start: CONFIG_SYS_PCI_MEM_BASE,
69 phys_start: CONFIG_SYS_PCI_MEM_PHYS,
70 size: CONFIG_SYS_PCI_MEM_SIZE,
Dave Liu19b247e2008-01-11 18:48:24 +080071 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
72 },
73 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020074 bus_start: CONFIG_SYS_PCI_MMIO_BASE,
75 phys_start: CONFIG_SYS_PCI_MMIO_PHYS,
76 size: CONFIG_SYS_PCI_MMIO_SIZE,
Dave Liu19b247e2008-01-11 18:48:24 +080077 flags: PCI_REGION_MEM
78 },
79 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020080 bus_start: CONFIG_SYS_PCI_IO_BASE,
81 phys_start: CONFIG_SYS_PCI_IO_PHYS,
82 size: CONFIG_SYS_PCI_IO_SIZE,
Dave Liu19b247e2008-01-11 18:48:24 +080083 flags: PCI_REGION_IO
84 }
85};
86
Anton Vorontsov0db0be22009-01-08 04:26:17 +030087static struct pci_region pcie_regions_0[] = {
88 {
89 .bus_start = CONFIG_SYS_PCIE1_MEM_BASE,
90 .phys_start = CONFIG_SYS_PCIE1_MEM_PHYS,
91 .size = CONFIG_SYS_PCIE1_MEM_SIZE,
92 .flags = PCI_REGION_MEM,
93 },
94 {
95 .bus_start = CONFIG_SYS_PCIE1_IO_BASE,
96 .phys_start = CONFIG_SYS_PCIE1_IO_PHYS,
97 .size = CONFIG_SYS_PCIE1_IO_SIZE,
98 .flags = PCI_REGION_IO,
99 },
100};
101
102static struct pci_region pcie_regions_1[] = {
103 {
104 .bus_start = CONFIG_SYS_PCIE2_MEM_BASE,
105 .phys_start = CONFIG_SYS_PCIE2_MEM_PHYS,
106 .size = CONFIG_SYS_PCIE2_MEM_SIZE,
107 .flags = PCI_REGION_MEM,
108 },
109 {
110 .bus_start = CONFIG_SYS_PCIE2_IO_BASE,
111 .phys_start = CONFIG_SYS_PCIE2_IO_PHYS,
112 .size = CONFIG_SYS_PCIE2_IO_SIZE,
113 .flags = PCI_REGION_IO,
114 },
115};
116
Dave Liu19b247e2008-01-11 18:48:24 +0800117void pci_init_board(void)
118{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200119 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
Anton Vorontsov0db0be22009-01-08 04:26:17 +0300120 volatile sysconf83xx_t *sysconf = &immr->sysconf;
Dave Liu19b247e2008-01-11 18:48:24 +0800121 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
122 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
Anton Vorontsov0db0be22009-01-08 04:26:17 +0300123 volatile law83xx_t *pcie_law = sysconf->pcielaw;
Dave Liu19b247e2008-01-11 18:48:24 +0800124 struct pci_region *reg[] = { pci_regions };
Anton Vorontsov0db0be22009-01-08 04:26:17 +0300125 struct pci_region *pcie_reg[] = { pcie_regions_0, pcie_regions_1, };
Dave Liu19b247e2008-01-11 18:48:24 +0800126
127 /* Enable all 3 PCI_CLK_OUTPUTs. */
128 clk->occr |= 0xe0000000;
129
130 /*
131 * Configure PCI Local Access Windows
132 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200133 pci_law[0].bar = CONFIG_SYS_PCI_MEM_PHYS & LAWBAR_BAR;
Dave Liu19b247e2008-01-11 18:48:24 +0800134 pci_law[0].ar = LBLAWAR_EN | LBLAWAR_512MB;
135
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200136 pci_law[1].bar = CONFIG_SYS_PCI_IO_PHYS & LAWBAR_BAR;
Dave Liu19b247e2008-01-11 18:48:24 +0800137 pci_law[1].ar = LBLAWAR_EN | LBLAWAR_1MB;
138
Peter Tysere2283322010-09-14 19:13:50 -0500139 mpc83xx_pci_init(1, reg);
Anton Vorontsov0db0be22009-01-08 04:26:17 +0300140
141 /* Configure the clock for PCIE controller */
142 clrsetbits_be32(&clk->sccr, SCCR_PCIEXP1CM | SCCR_PCIEXP2CM,
143 SCCR_PCIEXP1CM_1 | SCCR_PCIEXP2CM_1);
144
145 /* Deassert the resets in the control register */
146 out_be32(&sysconf->pecr1, 0xE0008000);
147 out_be32(&sysconf->pecr2, 0xE0008000);
148 udelay(2000);
149
150 /* Configure PCI Express Local Access Windows */
151 out_be32(&pcie_law[0].bar, CONFIG_SYS_PCIE1_BASE & LAWBAR_BAR);
152 out_be32(&pcie_law[0].ar, LBLAWAR_EN | LBLAWAR_512MB);
153
154 out_be32(&pcie_law[1].bar, CONFIG_SYS_PCIE2_BASE & LAWBAR_BAR);
155 out_be32(&pcie_law[1].ar, LBLAWAR_EN | LBLAWAR_512MB);
156
Peter Tysere2283322010-09-14 19:13:50 -0500157 mpc83xx_pcie_init(2, pcie_reg);
Dave Liu19b247e2008-01-11 18:48:24 +0800158}
159
160#if defined(CONFIG_OF_BOARD_SETUP)
Anton Vorontsov13c16a12008-07-08 21:00:04 +0400161void fdt_tsec1_fixup(void *fdt, bd_t *bd)
162{
Anton Vorontsov13c16a12008-07-08 21:00:04 +0400163 const char disabled[] = "disabled";
164 const char *path;
165 int ret;
166
Anton Vorontsovd398b7e2009-06-10 00:25:36 +0400167 if (hwconfig_arg_cmp("board_type", "tsec1")) {
Anton Vorontsov87481782008-07-10 17:20:51 +0400168 return;
Anton Vorontsovd398b7e2009-06-10 00:25:36 +0400169 } else if (!hwconfig_arg_cmp("board_type", "ulpi")) {
170 printf("NOTICE: No or unknown board_type hwconfig specified.\n"
171 " Assuming board with TSEC1.\n");
Anton Vorontsov87481782008-07-10 17:20:51 +0400172 return;
Anton Vorontsov13c16a12008-07-08 21:00:04 +0400173 }
174
175 ret = fdt_path_offset(fdt, "/aliases");
176 if (ret < 0) {
177 printf("WARNING: can't find /aliases node\n");
178 return;
179 }
180
181 path = fdt_getprop(fdt, ret, "ethernet0", NULL);
182 if (!path) {
183 printf("WARNING: can't find ethernet0 alias\n");
184 return;
185 }
186
187 do_fixup_by_path(fdt, path, "status", disabled, sizeof(disabled), 1);
188}
189
Simon Glass2aec3cc2014-10-23 18:58:47 -0600190int ft_board_setup(void *blob, bd_t *bd)
Dave Liu19b247e2008-01-11 18:48:24 +0800191{
192 ft_cpu_setup(blob, bd);
193#ifdef CONFIG_PCI
194 ft_pci_setup(blob, bd);
195#endif
Sriram Dash9fd465c2016-09-16 17:12:15 +0530196 fsl_fdt_fixup_dr_usb(blob, bd);
Anton Vorontsov13c16a12008-07-08 21:00:04 +0400197 fdt_tsec1_fixup(blob, bd);
Simon Glass2aec3cc2014-10-23 18:58:47 -0600198
199 return 0;
Dave Liu19b247e2008-01-11 18:48:24 +0800200}
201#endif
Ben Warren052a5ea2008-08-31 20:37:00 -0700202
203int board_eth_init(bd_t *bis)
204{
205 cpu_eth_init(bis); /* Initialize TSECs first */
206 return pci_eth_init(bis);
207}
Anton Vorontsovec821752009-11-24 20:12:12 +0300208
209#else /* CONFIG_NAND_SPL */
210
211int checkboard(void)
212{
213 puts("Board: Freescale MPC8315ERDB\n");
214 return 0;
215}
216
217void board_init_f(ulong bootflag)
218{
219 board_early_init_f();
220 NS16550_init((NS16550_t)(CONFIG_SYS_IMMR + 0x4500),
221 CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE);
222 puts("NAND boot... ");
Simon Glass4c974d72017-03-28 10:27:24 -0600223 timer_init();
Simon Glassd35f3382017-04-06 12:47:05 -0600224 dram_init();
Anton Vorontsovec821752009-11-24 20:12:12 +0300225 relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC + 0x10000, (gd_t *)gd,
226 CONFIG_SYS_NAND_U_BOOT_RELOC);
227}
228
229void board_init_r(gd_t *gd, ulong dest_addr)
230{
231 nand_boot();
232}
233
234void putc(char c)
235{
236 if (gd->flags & GD_FLG_SILENT)
237 return;
238
239 if (c == '\n')
240 NS16550_putc((NS16550_t)(CONFIG_SYS_IMMR + 0x4500), '\r');
241
242 NS16550_putc((NS16550_t)(CONFIG_SYS_IMMR + 0x4500), c);
243}
244
245#endif /* CONFIG_NAND_SPL */