2 * Copyright 2009-2011 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
11 #include <asm/config_mpc85xx.h>
15 #include <asm/config_mpc86xx.h>
21 #ifndef HWCONFIG_BUFFER_SIZE
22 #define HWCONFIG_BUFFER_SIZE 256
25 /* CONFIG_HARD_SPI triggers SPI bus initialization in PowerPC */
26 #if defined(CONFIG_MPC8XXX_SPI) || defined(CONFIG_FSL_ESPI)
27 # ifndef CONFIG_HARD_SPI
28 # define CONFIG_HARD_SPI
33 #define CONFIG_SYS_BOOT_RAMDISK_HIGH
34 #define CONFIG_SYS_BOOT_GET_CMDLINE
35 #define CONFIG_SYS_BOOT_GET_KBD
37 #ifndef CONFIG_MAX_MEM_MAPPED
38 #if defined(CONFIG_E500) || \
39 defined(CONFIG_MPC86xx) || \
41 #define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
43 #define CONFIG_MAX_MEM_MAPPED (256 << 20)
47 /* Check if boards need to enable FSL DMA engine for SDRAM init */
48 #if !defined(CONFIG_FSL_DMA) && defined(CONFIG_DDR_ECC)
49 #if (defined(CONFIG_MPC83xx) && defined(CONFIG_DDR_ECC_INIT_VIA_DMA)) || \
50 ((defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)) && \
51 !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER))
52 #define CONFIG_FSL_DMA
57 * Provide a default boot page translation virtual address that lines up with
58 * Freescale's default e500 reset page.
60 #if (defined(CONFIG_E500) && defined(CONFIG_MP))
61 #ifndef CONFIG_BPTR_VIRT_ADDR
62 #define CONFIG_BPTR_VIRT_ADDR 0xfffff000
66 /* Since so many PPC SOCs have a semi-common LBC, define this here */
67 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) || \
68 defined(CONFIG_MPC83xx)
69 #if !defined(CONFIG_FSL_IFC)
70 #define CONFIG_FSL_LBC
74 /* The TSEC driver uses the PHYLIB infrastructure */
76 #if defined(CONFIG_TSEC_ENET)
79 #include <config_phylib_all_drivers.h>
80 #endif /* TSEC_ENET */
81 #endif /* !CONFIG_PHYLIB */
83 /* The FMAN driver uses the PHYLIB infrastructure */
84 #if defined(CONFIG_FMAN_ENET)
88 /* All PPC boards must swap IDE bytes */
89 #define CONFIG_IDE_SWAP_IO
91 #if defined(CONFIG_DM_SERIAL)
93 * TODO: Convert this to a clock driver exists that can give us the UART
96 #define CONFIG_SYS_NS16550_CLK get_serial_clock()
99 #endif /* _ASM_CONFIG_H_ */