2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2007-04-16 19:54:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) Freescale Semiconductor, Inc. 2006-2007
|
|
|
|
*
|
|
|
|
* Author: Scott Wood <scottwood@freescale.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-12-28 17:44:58 +00:00
|
|
|
#include <clock_legacy.h>
|
2019-12-28 17:44:54 +00:00
|
|
|
#include <fdt_support.h>
|
2019-11-14 19:57:46 +00:00
|
|
|
#include <init.h>
|
2007-12-20 21:57:28 +00:00
|
|
|
#if defined(CONFIG_OF_LIBFDT)
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2007-08-16 03:30:33 +00:00
|
|
|
#endif
|
2007-04-16 19:54:15 +00:00
|
|
|
#include <pci.h>
|
|
|
|
#include <mpc83xx.h>
|
2008-02-08 19:15:55 +00:00
|
|
|
#include <vsc7385.h>
|
2008-06-30 19:13:28 +00:00
|
|
|
#include <ns16550.h>
|
|
|
|
#include <nand.h>
|
2012-12-06 13:33:18 +00:00
|
|
|
#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD)
|
2011-11-11 21:55:38 +00:00
|
|
|
#include <asm/gpio.h>
|
|
|
|
#endif
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2007-04-16 19:54:15 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
int board_early_init_f(void)
|
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
|
|
|
|
volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
|
2007-04-16 19:54:15 +00:00
|
|
|
|
|
|
|
if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
|
|
|
|
gd->flags |= GD_FLG_SILENT;
|
|
|
|
#endif
|
2012-12-06 13:33:18 +00:00
|
|
|
#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD)
|
2011-11-11 21:55:38 +00:00
|
|
|
mpc83xx_gpio_init_f();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_early_init_r(void)
|
|
|
|
{
|
2012-12-06 13:33:18 +00:00
|
|
|
#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_SPL_BUILD)
|
2011-11-11 21:55:38 +00:00
|
|
|
mpc83xx_gpio_init_r();
|
|
|
|
#endif
|
2007-04-16 19:54:15 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int checkboard(void)
|
|
|
|
{
|
|
|
|
puts("Board: Freescale MPC8313ERDB\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-06 13:33:18 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2007-04-16 19:54:15 +00:00
|
|
|
static struct pci_region pci_regions[] = {
|
|
|
|
{
|
powerpc/mpc83xx: sparse fixes
fdt.c:91:78: warning: Using plain integer as NULL pointer
fdt.c:103:78: warning: Using plain integer as NULL pointer
speed.c:55:11: warning: symbol 'corecnf_tab' was not declared. Should it be static?
speed.c:519:5: warning: symbol 'do_clocks' was not declared. Should it be static?
mpc8313erdb.c:73:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:74:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:75:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:76:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:79:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:80:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:81:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:82:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:85:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:86:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:87:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:88:17: warning: obsolete struct initializer, use C99 syntax
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2012-10-29 13:34:39 +00:00
|
|
|
.bus_start = CONFIG_SYS_PCI1_MEM_BASE,
|
|
|
|
.phys_start = CONFIG_SYS_PCI1_MEM_PHYS,
|
|
|
|
.size = CONFIG_SYS_PCI1_MEM_SIZE,
|
|
|
|
.flags = PCI_REGION_MEM | PCI_REGION_PREFETCH
|
2007-04-16 19:54:15 +00:00
|
|
|
},
|
|
|
|
{
|
powerpc/mpc83xx: sparse fixes
fdt.c:91:78: warning: Using plain integer as NULL pointer
fdt.c:103:78: warning: Using plain integer as NULL pointer
speed.c:55:11: warning: symbol 'corecnf_tab' was not declared. Should it be static?
speed.c:519:5: warning: symbol 'do_clocks' was not declared. Should it be static?
mpc8313erdb.c:73:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:74:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:75:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:76:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:79:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:80:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:81:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:82:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:85:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:86:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:87:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:88:17: warning: obsolete struct initializer, use C99 syntax
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2012-10-29 13:34:39 +00:00
|
|
|
.bus_start = CONFIG_SYS_PCI1_MMIO_BASE,
|
|
|
|
.phys_start = CONFIG_SYS_PCI1_MMIO_PHYS,
|
|
|
|
.size = CONFIG_SYS_PCI1_MMIO_SIZE,
|
|
|
|
.flags = PCI_REGION_MEM
|
2007-04-16 19:54:15 +00:00
|
|
|
},
|
|
|
|
{
|
powerpc/mpc83xx: sparse fixes
fdt.c:91:78: warning: Using plain integer as NULL pointer
fdt.c:103:78: warning: Using plain integer as NULL pointer
speed.c:55:11: warning: symbol 'corecnf_tab' was not declared. Should it be static?
speed.c:519:5: warning: symbol 'do_clocks' was not declared. Should it be static?
mpc8313erdb.c:73:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:74:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:75:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:76:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:79:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:80:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:81:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:82:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:85:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:86:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:87:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:88:17: warning: obsolete struct initializer, use C99 syntax
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2012-10-29 13:34:39 +00:00
|
|
|
.bus_start = CONFIG_SYS_PCI1_IO_BASE,
|
|
|
|
.phys_start = CONFIG_SYS_PCI1_IO_PHYS,
|
|
|
|
.size = CONFIG_SYS_PCI1_IO_SIZE,
|
|
|
|
.flags = PCI_REGION_IO
|
2007-04-16 19:54:15 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void pci_init_board(void)
|
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
|
2007-04-16 19:54:15 +00:00
|
|
|
volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
|
|
|
|
volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
|
|
|
|
struct pci_region *reg[] = { pci_regions };
|
|
|
|
|
|
|
|
/* Enable all 3 PCI_CLK_OUTPUTs. */
|
|
|
|
clk->occr |= 0xe0000000;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Configure PCI Local Access Windows
|
|
|
|
*/
|
2008-10-16 13:01:15 +00:00
|
|
|
pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
|
2007-04-16 19:54:15 +00:00
|
|
|
pci_law[0].ar = LBLAWAR_EN | LBLAWAR_512MB;
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
|
2007-04-16 19:54:15 +00:00
|
|
|
pci_law[1].ar = LBLAWAR_EN | LBLAWAR_1MB;
|
|
|
|
|
2010-09-15 00:13:50 +00:00
|
|
|
mpc83xx_pci_init(1, reg);
|
2007-04-16 19:54:15 +00:00
|
|
|
}
|
|
|
|
|
2008-02-08 19:15:55 +00:00
|
|
|
/*
|
|
|
|
* Miscellaneous late-boot configurations
|
|
|
|
*
|
|
|
|
* If a VSC7385 microcode image is present, then upload it.
|
|
|
|
*/
|
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
#ifdef CONFIG_VSC7385_IMAGE
|
|
|
|
if (vsc7385_upload_firmware((void *) CONFIG_VSC7385_IMAGE,
|
|
|
|
CONFIG_VSC7385_IMAGE_SIZE)) {
|
|
|
|
puts("Failure uploading VSC7385 microcode.\n");
|
|
|
|
rc = 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2007-08-16 03:30:33 +00:00
|
|
|
#if defined(CONFIG_OF_BOARD_SETUP)
|
2020-06-26 06:13:33 +00:00
|
|
|
int ft_board_setup(void *blob, struct bd_info *bd)
|
2007-04-16 19:54:15 +00:00
|
|
|
{
|
2007-08-16 03:30:33 +00:00
|
|
|
ft_cpu_setup(blob, bd);
|
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
ft_pci_setup(blob, bd);
|
|
|
|
#endif
|
2014-10-24 00:58:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2007-04-16 19:54:15 +00:00
|
|
|
}
|
|
|
|
#endif
|
2012-12-06 13:33:18 +00:00
|
|
|
#else /* CONFIG_SPL_BUILD */
|
2008-06-30 19:13:28 +00:00
|
|
|
void board_init_f(ulong bootflag)
|
|
|
|
{
|
|
|
|
board_early_init_f();
|
2020-12-23 02:30:19 +00:00
|
|
|
ns16550_init((struct ns16550 *)(CONFIG_SYS_IMMR + 0x4500),
|
2013-10-04 15:43:24 +00:00
|
|
|
CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE);
|
2008-06-30 19:13:28 +00:00
|
|
|
puts("NAND boot... ");
|
2017-03-28 16:27:24 +00:00
|
|
|
timer_init();
|
2017-04-06 18:47:05 +00:00
|
|
|
dram_init();
|
2009-09-11 02:53:08 +00:00
|
|
|
relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC_SP, (gd_t *)gd,
|
2013-10-04 15:43:24 +00:00
|
|
|
CONFIG_SYS_NAND_U_BOOT_RELOC);
|
2008-06-30 19:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void board_init_r(gd_t *gd, ulong dest_addr)
|
|
|
|
{
|
|
|
|
nand_boot();
|
|
|
|
}
|
|
|
|
|
|
|
|
void putc(char c)
|
|
|
|
{
|
|
|
|
if (gd->flags & GD_FLG_SILENT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (c == '\n')
|
2020-12-23 02:30:19 +00:00
|
|
|
ns16550_putc((struct ns16550 *)(CONFIG_SYS_IMMR + 0x4500), '\r');
|
2008-06-30 19:13:28 +00:00
|
|
|
|
2020-12-23 02:30:19 +00:00
|
|
|
ns16550_putc((struct ns16550 *)(CONFIG_SYS_IMMR + 0x4500), c);
|
2008-06-30 19:13:28 +00:00
|
|
|
}
|
|
|
|
#endif
|