Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Freescale Semiconductor, Inc. 2006-2007 |
| 3 | * |
| 4 | * Author: Scott Wood <scottwood@freescale.com> |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Kim Phillips | b3458d2 | 2007-12-20 15:57:28 -0600 | [diff] [blame] | 10 | #if defined(CONFIG_OF_LIBFDT) |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 11 | #include <libfdt.h> |
| 12 | #endif |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 13 | #include <pci.h> |
| 14 | #include <mpc83xx.h> |
Timur Tabi | 89c7784 | 2008-02-08 13:15:55 -0600 | [diff] [blame] | 15 | #include <vsc7385.h> |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 16 | #include <ns16550.h> |
| 17 | #include <nand.h> |
Scott Wood | 22f4442 | 2012-12-06 13:33:18 +0000 | [diff] [blame] | 18 | #if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD) |
Joe Hershberger | 0eaf8f9 | 2011-11-11 15:55:38 -0600 | [diff] [blame] | 19 | #include <asm/gpio.h> |
| 20 | #endif |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 21 | |
| 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
| 24 | int board_early_init_f(void) |
| 25 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 26 | #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC |
| 27 | volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 28 | |
| 29 | if (im->pmc.pmccr1 & PMCCR1_POWER_OFF) |
| 30 | gd->flags |= GD_FLG_SILENT; |
| 31 | #endif |
Scott Wood | 22f4442 | 2012-12-06 13:33:18 +0000 | [diff] [blame] | 32 | #if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD) |
Joe Hershberger | 0eaf8f9 | 2011-11-11 15:55:38 -0600 | [diff] [blame] | 33 | mpc83xx_gpio_init_f(); |
| 34 | #endif |
| 35 | |
| 36 | return 0; |
| 37 | } |
| 38 | |
| 39 | int board_early_init_r(void) |
| 40 | { |
Scott Wood | 22f4442 | 2012-12-06 13:33:18 +0000 | [diff] [blame] | 41 | #if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD) |
Joe Hershberger | 0eaf8f9 | 2011-11-11 15:55:38 -0600 | [diff] [blame] | 42 | mpc83xx_gpio_init_r(); |
| 43 | #endif |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 44 | |
| 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | int checkboard(void) |
| 49 | { |
| 50 | puts("Board: Freescale MPC8313ERDB\n"); |
| 51 | return 0; |
| 52 | } |
| 53 | |
Scott Wood | 22f4442 | 2012-12-06 13:33:18 +0000 | [diff] [blame] | 54 | #ifndef CONFIG_SPL_BUILD |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 55 | static struct pci_region pci_regions[] = { |
| 56 | { |
Kim Phillips | a2873bd | 2012-10-29 13:34:39 +0000 | [diff] [blame] | 57 | .bus_start = CONFIG_SYS_PCI1_MEM_BASE, |
| 58 | .phys_start = CONFIG_SYS_PCI1_MEM_PHYS, |
| 59 | .size = CONFIG_SYS_PCI1_MEM_SIZE, |
| 60 | .flags = PCI_REGION_MEM | PCI_REGION_PREFETCH |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 61 | }, |
| 62 | { |
Kim Phillips | a2873bd | 2012-10-29 13:34:39 +0000 | [diff] [blame] | 63 | .bus_start = CONFIG_SYS_PCI1_MMIO_BASE, |
| 64 | .phys_start = CONFIG_SYS_PCI1_MMIO_PHYS, |
| 65 | .size = CONFIG_SYS_PCI1_MMIO_SIZE, |
| 66 | .flags = PCI_REGION_MEM |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 67 | }, |
| 68 | { |
Kim Phillips | a2873bd | 2012-10-29 13:34:39 +0000 | [diff] [blame] | 69 | .bus_start = CONFIG_SYS_PCI1_IO_BASE, |
| 70 | .phys_start = CONFIG_SYS_PCI1_IO_PHYS, |
| 71 | .size = CONFIG_SYS_PCI1_IO_SIZE, |
| 72 | .flags = PCI_REGION_IO |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 73 | } |
| 74 | }; |
| 75 | |
| 76 | void pci_init_board(void) |
| 77 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 78 | volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 79 | volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk; |
| 80 | volatile law83xx_t *pci_law = immr->sysconf.pcilaw; |
| 81 | struct pci_region *reg[] = { pci_regions }; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 82 | |
| 83 | /* Enable all 3 PCI_CLK_OUTPUTs. */ |
| 84 | clk->occr |= 0xe0000000; |
| 85 | |
| 86 | /* |
| 87 | * Configure PCI Local Access Windows |
| 88 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 89 | pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 90 | pci_law[0].ar = LBLAWAR_EN | LBLAWAR_512MB; |
| 91 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 92 | pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 93 | pci_law[1].ar = LBLAWAR_EN | LBLAWAR_1MB; |
| 94 | |
Peter Tyser | 6aa3d3b | 2010-09-14 19:13:50 -0500 | [diff] [blame] | 95 | mpc83xx_pci_init(1, reg); |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 96 | } |
| 97 | |
Timur Tabi | 89c7784 | 2008-02-08 13:15:55 -0600 | [diff] [blame] | 98 | /* |
| 99 | * Miscellaneous late-boot configurations |
| 100 | * |
| 101 | * If a VSC7385 microcode image is present, then upload it. |
| 102 | */ |
| 103 | int misc_init_r(void) |
| 104 | { |
| 105 | int rc = 0; |
| 106 | |
| 107 | #ifdef CONFIG_VSC7385_IMAGE |
| 108 | if (vsc7385_upload_firmware((void *) CONFIG_VSC7385_IMAGE, |
| 109 | CONFIG_VSC7385_IMAGE_SIZE)) { |
| 110 | puts("Failure uploading VSC7385 microcode.\n"); |
| 111 | rc = 1; |
| 112 | } |
| 113 | #endif |
| 114 | |
| 115 | return rc; |
| 116 | } |
| 117 | |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 118 | #if defined(CONFIG_OF_BOARD_SETUP) |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 119 | int ft_board_setup(void *blob, bd_t *bd) |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 120 | { |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 121 | ft_cpu_setup(blob, bd); |
| 122 | #ifdef CONFIG_PCI |
| 123 | ft_pci_setup(blob, bd); |
| 124 | #endif |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 125 | |
| 126 | return 0; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 127 | } |
| 128 | #endif |
Scott Wood | 22f4442 | 2012-12-06 13:33:18 +0000 | [diff] [blame] | 129 | #else /* CONFIG_SPL_BUILD */ |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 130 | void board_init_f(ulong bootflag) |
| 131 | { |
| 132 | board_early_init_f(); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 133 | NS16550_init((NS16550_t)(CONFIG_SYS_IMMR + 0x4500), |
Wolfgang Denk | 93e1459 | 2013-10-04 17:43:24 +0200 | [diff] [blame] | 134 | CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE); |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 135 | puts("NAND boot... "); |
| 136 | init_timebase(); |
| 137 | initdram(0); |
Mingkai Hu | 6e1385d | 2009-09-11 10:53:08 +0800 | [diff] [blame] | 138 | relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC_SP, (gd_t *)gd, |
Wolfgang Denk | 93e1459 | 2013-10-04 17:43:24 +0200 | [diff] [blame] | 139 | CONFIG_SYS_NAND_U_BOOT_RELOC); |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | void board_init_r(gd_t *gd, ulong dest_addr) |
| 143 | { |
| 144 | nand_boot(); |
| 145 | } |
| 146 | |
| 147 | void putc(char c) |
| 148 | { |
| 149 | if (gd->flags & GD_FLG_SILENT) |
| 150 | return; |
| 151 | |
| 152 | if (c == '\n') |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 153 | NS16550_putc((NS16550_t)(CONFIG_SYS_IMMR + 0x4500), '\r'); |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 154 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 155 | NS16550_putc((NS16550_t)(CONFIG_SYS_IMMR + 0x4500), c); |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 156 | } |
| 157 | #endif |