blob: 55686a1abf1bfe5e961746ff226718e0186628c5 [file] [log] [blame]
Kumar Gala4c882892009-02-05 20:40:57 -06001/*
Poonam Aggrwal2ba3ee02011-01-13 21:39:27 +05302 * Copyright 2009-2011 Freescale Semiconductor, Inc.
Kumar Gala4c882892009-02-05 20:40:57 -06003 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Kumar Gala4c882892009-02-05 20:40:57 -06005 */
6
7#ifndef _ASM_CONFIG_H_
8#define _ASM_CONFIG_H_
9
Kumar Galafe137112011-01-19 03:05:26 -060010#ifdef CONFIG_MPC85xx
11#include <asm/config_mpc85xx.h>
12#endif
13
14#ifdef CONFIG_MPC86xx
15#include <asm/config_mpc86xx.h>
York Sunf0626592013-09-30 09:22:09 -070016#endif
17
18#ifdef CONFIG_MPC83xx
Kumar Galafe137112011-01-19 03:05:26 -060019#endif
20
York Sune2cba152012-08-17 09:00:54 +000021#ifndef HWCONFIG_BUFFER_SIZE
22 #define HWCONFIG_BUFFER_SIZE 256
23#endif
24
Mingkai Hu799efd92011-04-26 16:31:16 +080025/* 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
29# endif
30#endif
31
Mike Frysingera0dadf82009-11-03 11:35:59 -050032#define CONFIG_LMB
John Rigbyeea8e692010-10-13 13:57:35 -060033#define CONFIG_SYS_BOOT_RAMDISK_HIGH
34#define CONFIG_SYS_BOOT_GET_CMDLINE
35#define CONFIG_SYS_BOOT_GET_KBD
Mike Frysingera0dadf82009-11-03 11:35:59 -050036
Kumar Gala4cd44a82009-02-05 20:40:58 -060037#ifndef CONFIG_MAX_MEM_MAPPED
York Sune12ce982011-08-26 11:32:44 -070038#if defined(CONFIG_4xx) || \
39 defined(CONFIG_E500) || \
40 defined(CONFIG_MPC86xx) || \
41 defined(CONFIG_E300)
Kumar Gala4cd44a82009-02-05 20:40:58 -060042#define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
43#else
Stefan Roesea14295e2009-02-11 09:37:12 +010044#define CONFIG_MAX_MEM_MAPPED (256 << 20)
Kumar Gala4cd44a82009-02-05 20:40:58 -060045#endif
46#endif
47
Peter Tyserbee01682009-07-15 00:01:08 -050048/* Check if boards need to enable FSL DMA engine for SDRAM init */
49#if !defined(CONFIG_FSL_DMA) && defined(CONFIG_DDR_ECC)
50#if (defined(CONFIG_MPC83xx) && defined(CONFIG_DDR_ECC_INIT_VIA_DMA)) || \
51 ((defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)) && \
52 !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER))
Peter Tyserae7a7d42009-06-30 17:15:40 -050053#define CONFIG_FSL_DMA
54#endif
Kumar Gala4c882892009-02-05 20:40:57 -060055#endif
Peter Tyserae7a7d42009-06-30 17:15:40 -050056
Peter Tyser7feaacb2009-10-23 15:55:47 -050057/*
58 * Provide a default boot page translation virtual address that lines up with
59 * Freescale's default e500 reset page.
60 */
61#if (defined(CONFIG_E500) && defined(CONFIG_MP))
62#ifndef CONFIG_BPTR_VIRT_ADDR
63#define CONFIG_BPTR_VIRT_ADDR 0xfffff000
64#endif
65#endif
66
Becky Bruce0d4cee12010-06-17 11:37:20 -050067/* Since so many PPC SOCs have a semi-common LBC, define this here */
68#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) || \
69 defined(CONFIG_MPC83xx)
Dipen Dudhat00c42942011-01-20 16:29:35 +053070#if !defined(CONFIG_FSL_IFC)
Becky Bruce0d4cee12010-06-17 11:37:20 -050071#define CONFIG_FSL_LBC
72#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +053073#endif
Becky Bruce0d4cee12010-06-17 11:37:20 -050074
Andy Fleming422effd2011-04-08 02:10:54 -050075/* The TSEC driver uses the PHYLIB infrastructure */
76#ifndef CONFIG_PHYLIB
77#if defined(CONFIG_TSEC_ENET)
78#define CONFIG_PHYLIB
79
80#include <config_phylib_all_drivers.h>
81#endif /* TSEC_ENET */
82#endif /* !CONFIG_PHYLIB */
83
Kumar Gala2683c532011-04-13 08:37:44 -050084/* The FMAN driver uses the PHYLIB infrastructure */
85#if defined(CONFIG_FMAN_ENET)
86#define CONFIG_PHYLIB
87#endif
88
Albert Aribaud036c6b42010-08-08 05:17:05 +053089/* All PPC boards must swap IDE bytes */
90#define CONFIG_IDE_SWAP_IO
91
Thomas Chou78b98812015-11-19 21:48:07 +080092#if defined(CONFIG_DM_SERIAL)
93/*
94 * TODO: Convert this to a clock driver exists that can give us the UART
95 * clock here.
96 */
97#define CONFIG_SYS_NS16550_CLK get_serial_clock()
98#endif
99
Peter Tyserae7a7d42009-06-30 17:15:40 -0500100#endif /* _ASM_CONFIG_H_ */