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