blob: bb23756d79aea72b5fe59ac63952a2dbbe37675c [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>
York Sunf0626592013-09-30 09:22:09 -070012#define CONFIG_SYS_FSL_DDR
Kumar Galafe137112011-01-19 03:05:26 -060013#endif
14
15#ifdef CONFIG_MPC86xx
16#include <asm/config_mpc86xx.h>
York Sunf0626592013-09-30 09:22:09 -070017#define CONFIG_SYS_FSL_DDR
18#endif
19
20#ifdef CONFIG_MPC83xx
21#define CONFIG_SYS_FSL_DDR
Kumar Galafe137112011-01-19 03:05:26 -060022#endif
23
York Sune2cba152012-08-17 09:00:54 +000024#ifndef HWCONFIG_BUFFER_SIZE
25 #define HWCONFIG_BUFFER_SIZE 256
26#endif
27
Mingkai Hu799efd92011-04-26 16:31:16 +080028/* CONFIG_HARD_SPI triggers SPI bus initialization in PowerPC */
29#if defined(CONFIG_MPC8XXX_SPI) || defined(CONFIG_FSL_ESPI)
30# ifndef CONFIG_HARD_SPI
31# define CONFIG_HARD_SPI
32# endif
33#endif
34
Mike Frysingera0dadf82009-11-03 11:35:59 -050035#define CONFIG_LMB
John Rigbyeea8e692010-10-13 13:57:35 -060036#define CONFIG_SYS_BOOT_RAMDISK_HIGH
37#define CONFIG_SYS_BOOT_GET_CMDLINE
38#define CONFIG_SYS_BOOT_GET_KBD
Mike Frysingera0dadf82009-11-03 11:35:59 -050039
Kumar Gala4cd44a82009-02-05 20:40:58 -060040#ifndef CONFIG_MAX_MEM_MAPPED
York Sune12ce982011-08-26 11:32:44 -070041#if defined(CONFIG_4xx) || \
42 defined(CONFIG_E500) || \
43 defined(CONFIG_MPC86xx) || \
44 defined(CONFIG_E300)
Kumar Gala4cd44a82009-02-05 20:40:58 -060045#define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
46#else
Stefan Roesea14295e2009-02-11 09:37:12 +010047#define CONFIG_MAX_MEM_MAPPED (256 << 20)
Kumar Gala4cd44a82009-02-05 20:40:58 -060048#endif
49#endif
50
Peter Tyserbee01682009-07-15 00:01:08 -050051/* Check if boards need to enable FSL DMA engine for SDRAM init */
52#if !defined(CONFIG_FSL_DMA) && defined(CONFIG_DDR_ECC)
53#if (defined(CONFIG_MPC83xx) && defined(CONFIG_DDR_ECC_INIT_VIA_DMA)) || \
54 ((defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)) && \
55 !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER))
Peter Tyserae7a7d42009-06-30 17:15:40 -050056#define CONFIG_FSL_DMA
57#endif
Kumar Gala4c882892009-02-05 20:40:57 -060058#endif
Peter Tyserae7a7d42009-06-30 17:15:40 -050059
Kumar Galafe137112011-01-19 03:05:26 -060060#ifndef CONFIG_MAX_CPUS
Kumar Galabb5409c2009-03-19 02:39:17 -050061#define CONFIG_MAX_CPUS 1
Poonam Aggrwal4baef822009-07-31 12:08:14 +053062#endif
63
Peter Tyser7feaacb2009-10-23 15:55:47 -050064/*
65 * Provide a default boot page translation virtual address that lines up with
66 * Freescale's default e500 reset page.
67 */
68#if (defined(CONFIG_E500) && defined(CONFIG_MP))
69#ifndef CONFIG_BPTR_VIRT_ADDR
70#define CONFIG_BPTR_VIRT_ADDR 0xfffff000
71#endif
72#endif
73
Kim Phillipsdef125f2010-06-01 12:24:27 -050074/*
75 * SEC (crypto unit) major compatible version determination
76 */
Kumar Galafe137112011-01-19 03:05:26 -060077#if defined(CONFIG_MPC83xx)
Ruchika Gupta272da152014-12-15 11:30:36 +053078#define CONFIG_SYS_FSL_SEC_BE
Kim Phillipsdef125f2010-06-01 12:24:27 -050079#define CONFIG_SYS_FSL_SEC_COMPAT 2
80#endif
81
Becky Bruce0d4cee12010-06-17 11:37:20 -050082/* Since so many PPC SOCs have a semi-common LBC, define this here */
83#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) || \
84 defined(CONFIG_MPC83xx)
Dipen Dudhat00c42942011-01-20 16:29:35 +053085#if !defined(CONFIG_FSL_IFC)
Becky Bruce0d4cee12010-06-17 11:37:20 -050086#define CONFIG_FSL_LBC
87#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +053088#endif
Becky Bruce0d4cee12010-06-17 11:37:20 -050089
Andy Fleming422effd2011-04-08 02:10:54 -050090/* The TSEC driver uses the PHYLIB infrastructure */
91#ifndef CONFIG_PHYLIB
92#if defined(CONFIG_TSEC_ENET)
93#define CONFIG_PHYLIB
94
95#include <config_phylib_all_drivers.h>
96#endif /* TSEC_ENET */
97#endif /* !CONFIG_PHYLIB */
98
Kumar Gala2683c532011-04-13 08:37:44 -050099/* The FMAN driver uses the PHYLIB infrastructure */
100#if defined(CONFIG_FMAN_ENET)
101#define CONFIG_PHYLIB
102#endif
103
Albert Aribaud036c6b42010-08-08 05:17:05 +0530104/* All PPC boards must swap IDE bytes */
105#define CONFIG_IDE_SWAP_IO
106
Thomas Chou78b98812015-11-19 21:48:07 +0800107#if defined(CONFIG_DM_SERIAL)
108/*
109 * TODO: Convert this to a clock driver exists that can give us the UART
110 * clock here.
111 */
112#define CONFIG_SYS_NS16550_CLK get_serial_clock()
113#endif
114
Peter Tyserae7a7d42009-06-30 17:15:40 -0500115#endif /* _ASM_CONFIG_H_ */