blob: 72d2d33e0b5c15d093dfa9cdb6baac8cfd1e7191 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Scott Wood96b8a052007-04-16 14:54:15 -05002/*
3 * Copyright (C) Freescale Semiconductor, Inc. 2006-2007
4 *
5 * Author: Scott Wood <scottwood@freescale.com>
Scott Wood96b8a052007-04-16 14:54:15 -05006 */
7
8#include <common.h>
Kim Phillipsb3458d22007-12-20 15:57:28 -06009#if defined(CONFIG_OF_LIBFDT)
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Kim Phillips3fde9e82007-08-15 22:30:33 -050011#endif
Scott Wood96b8a052007-04-16 14:54:15 -050012#include <pci.h>
13#include <mpc83xx.h>
Timur Tabi89c77842008-02-08 13:15:55 -060014#include <vsc7385.h>
Scott Woode4c09502008-06-30 14:13:28 -050015#include <ns16550.h>
16#include <nand.h>
Scott Wood22f44422012-12-06 13:33:18 +000017#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD)
Joe Hershberger0eaf8f92011-11-11 15:55:38 -060018#include <asm/gpio.h>
19#endif
Scott Wood96b8a052007-04-16 14:54:15 -050020
21DECLARE_GLOBAL_DATA_PTR;
22
23int board_early_init_f(void)
24{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020025#ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
26 volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
Scott Wood96b8a052007-04-16 14:54:15 -050027
28 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
29 gd->flags |= GD_FLG_SILENT;
30#endif
Scott Wood22f44422012-12-06 13:33:18 +000031#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD)
Joe Hershberger0eaf8f92011-11-11 15:55:38 -060032 mpc83xx_gpio_init_f();
33#endif
34
35 return 0;
36}
37
38int board_early_init_r(void)
39{
Scott Wood22f44422012-12-06 13:33:18 +000040#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD)
Joe Hershberger0eaf8f92011-11-11 15:55:38 -060041 mpc83xx_gpio_init_r();
42#endif
Scott Wood96b8a052007-04-16 14:54:15 -050043
44 return 0;
45}
46
47int checkboard(void)
48{
49 puts("Board: Freescale MPC8313ERDB\n");
50 return 0;
51}
52
Scott Wood22f44422012-12-06 13:33:18 +000053#ifndef CONFIG_SPL_BUILD
Scott Wood96b8a052007-04-16 14:54:15 -050054static struct pci_region pci_regions[] = {
55 {
Kim Phillipsa2873bd2012-10-29 13:34:39 +000056 .bus_start = CONFIG_SYS_PCI1_MEM_BASE,
57 .phys_start = CONFIG_SYS_PCI1_MEM_PHYS,
58 .size = CONFIG_SYS_PCI1_MEM_SIZE,
59 .flags = PCI_REGION_MEM | PCI_REGION_PREFETCH
Scott Wood96b8a052007-04-16 14:54:15 -050060 },
61 {
Kim Phillipsa2873bd2012-10-29 13:34:39 +000062 .bus_start = CONFIG_SYS_PCI1_MMIO_BASE,
63 .phys_start = CONFIG_SYS_PCI1_MMIO_PHYS,
64 .size = CONFIG_SYS_PCI1_MMIO_SIZE,
65 .flags = PCI_REGION_MEM
Scott Wood96b8a052007-04-16 14:54:15 -050066 },
67 {
Kim Phillipsa2873bd2012-10-29 13:34:39 +000068 .bus_start = CONFIG_SYS_PCI1_IO_BASE,
69 .phys_start = CONFIG_SYS_PCI1_IO_PHYS,
70 .size = CONFIG_SYS_PCI1_IO_SIZE,
71 .flags = PCI_REGION_IO
Scott Wood96b8a052007-04-16 14:54:15 -050072 }
73};
74
75void pci_init_board(void)
76{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020077 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
Scott Wood96b8a052007-04-16 14:54:15 -050078 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
79 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
80 struct pci_region *reg[] = { pci_regions };
Scott Wood96b8a052007-04-16 14:54:15 -050081
82 /* Enable all 3 PCI_CLK_OUTPUTs. */
83 clk->occr |= 0xe0000000;
84
85 /*
86 * Configure PCI Local Access Windows
87 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020088 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Scott Wood96b8a052007-04-16 14:54:15 -050089 pci_law[0].ar = LBLAWAR_EN | LBLAWAR_512MB;
90
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020091 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Scott Wood96b8a052007-04-16 14:54:15 -050092 pci_law[1].ar = LBLAWAR_EN | LBLAWAR_1MB;
93
Peter Tyser6aa3d3b2010-09-14 19:13:50 -050094 mpc83xx_pci_init(1, reg);
Scott Wood96b8a052007-04-16 14:54:15 -050095}
96
Timur Tabi89c77842008-02-08 13:15:55 -060097/*
98 * Miscellaneous late-boot configurations
99 *
100 * If a VSC7385 microcode image is present, then upload it.
101*/
102int misc_init_r(void)
103{
104 int rc = 0;
105
106#ifdef CONFIG_VSC7385_IMAGE
107 if (vsc7385_upload_firmware((void *) CONFIG_VSC7385_IMAGE,
108 CONFIG_VSC7385_IMAGE_SIZE)) {
109 puts("Failure uploading VSC7385 microcode.\n");
110 rc = 1;
111 }
112#endif
113
114 return rc;
115}
116
Kim Phillips3fde9e82007-08-15 22:30:33 -0500117#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glasse895a4b2014-10-23 18:58:47 -0600118int ft_board_setup(void *blob, bd_t *bd)
Scott Wood96b8a052007-04-16 14:54:15 -0500119{
Kim Phillips3fde9e82007-08-15 22:30:33 -0500120 ft_cpu_setup(blob, bd);
121#ifdef CONFIG_PCI
122 ft_pci_setup(blob, bd);
123#endif
Simon Glasse895a4b2014-10-23 18:58:47 -0600124
125 return 0;
Scott Wood96b8a052007-04-16 14:54:15 -0500126}
127#endif
Scott Wood22f44422012-12-06 13:33:18 +0000128#else /* CONFIG_SPL_BUILD */
Scott Woode4c09502008-06-30 14:13:28 -0500129void board_init_f(ulong bootflag)
130{
131 board_early_init_f();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200132 NS16550_init((NS16550_t)(CONFIG_SYS_IMMR + 0x4500),
Wolfgang Denk93e14592013-10-04 17:43:24 +0200133 CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE);
Scott Woode4c09502008-06-30 14:13:28 -0500134 puts("NAND boot... ");
Simon Glass70e2aaf2017-03-28 10:27:24 -0600135 timer_init();
Simon Glassf1683aa2017-04-06 12:47:05 -0600136 dram_init();
Mingkai Hu6e1385d2009-09-11 10:53:08 +0800137 relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC_SP, (gd_t *)gd,
Wolfgang Denk93e14592013-10-04 17:43:24 +0200138 CONFIG_SYS_NAND_U_BOOT_RELOC);
Scott Woode4c09502008-06-30 14:13:28 -0500139}
140
141void board_init_r(gd_t *gd, ulong dest_addr)
142{
143 nand_boot();
144}
145
146void putc(char c)
147{
148 if (gd->flags & GD_FLG_SILENT)
149 return;
150
151 if (c == '\n')
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152 NS16550_putc((NS16550_t)(CONFIG_SYS_IMMR + 0x4500), '\r');
Scott Woode4c09502008-06-30 14:13:28 -0500153
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154 NS16550_putc((NS16550_t)(CONFIG_SYS_IMMR + 0x4500), c);
Scott Woode4c09502008-06-30 14:13:28 -0500155}
156#endif