blob: 99b410dc9b090a3c8b12d42974edc76f08150677 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Kumar Gala4c882892009-02-05 20:40:57 -06002/*
Poonam Aggrwal2ba3ee02011-01-13 21:39:27 +05303 * Copyright 2009-2011 Freescale Semiconductor, Inc.
Kumar Gala4c882892009-02-05 20:40:57 -06004 */
5
6#ifndef _ASM_CONFIG_H_
7#define _ASM_CONFIG_H_
8
Kumar Galafe137112011-01-19 03:05:26 -06009#ifdef CONFIG_MPC85xx
10#include <asm/config_mpc85xx.h>
11#endif
12
13#ifdef CONFIG_MPC86xx
14#include <asm/config_mpc86xx.h>
York Sunf0626592013-09-30 09:22:09 -070015#endif
16
York Sune2cba152012-08-17 09:00:54 +000017#ifndef HWCONFIG_BUFFER_SIZE
18 #define HWCONFIG_BUFFER_SIZE 256
19#endif
20
John Rigbyeea8e692010-10-13 13:57:35 -060021#define CONFIG_SYS_BOOT_RAMDISK_HIGH
Mike Frysingera0dadf82009-11-03 11:35:59 -050022
Kumar Gala4cd44a82009-02-05 20:40:58 -060023#ifndef CONFIG_MAX_MEM_MAPPED
Heiko Schocher20280122017-06-27 16:49:14 +020024#if defined(CONFIG_E500) || \
York Sune12ce982011-08-26 11:32:44 -070025 defined(CONFIG_MPC86xx) || \
26 defined(CONFIG_E300)
Kumar Gala4cd44a82009-02-05 20:40:58 -060027#define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
28#else
Stefan Roesea14295e2009-02-11 09:37:12 +010029#define CONFIG_MAX_MEM_MAPPED (256 << 20)
Kumar Gala4cd44a82009-02-05 20:40:58 -060030#endif
31#endif
32
Peter Tyserbee01682009-07-15 00:01:08 -050033/* Check if boards need to enable FSL DMA engine for SDRAM init */
34#if !defined(CONFIG_FSL_DMA) && defined(CONFIG_DDR_ECC)
35#if (defined(CONFIG_MPC83xx) && defined(CONFIG_DDR_ECC_INIT_VIA_DMA)) || \
36 ((defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)) && \
37 !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER))
Peter Tyserae7a7d42009-06-30 17:15:40 -050038#define CONFIG_FSL_DMA
39#endif
Kumar Gala4c882892009-02-05 20:40:57 -060040#endif
Peter Tyserae7a7d42009-06-30 17:15:40 -050041
Peter Tyser7feaacb2009-10-23 15:55:47 -050042/*
43 * Provide a default boot page translation virtual address that lines up with
44 * Freescale's default e500 reset page.
45 */
46#if (defined(CONFIG_E500) && defined(CONFIG_MP))
47#ifndef CONFIG_BPTR_VIRT_ADDR
48#define CONFIG_BPTR_VIRT_ADDR 0xfffff000
49#endif
50#endif
51
Becky Bruce0d4cee12010-06-17 11:37:20 -050052/* Since so many PPC SOCs have a semi-common LBC, define this here */
53#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) || \
54 defined(CONFIG_MPC83xx)
Dipen Dudhat00c42942011-01-20 16:29:35 +053055#if !defined(CONFIG_FSL_IFC)
Becky Bruce0d4cee12010-06-17 11:37:20 -050056#define CONFIG_FSL_LBC
57#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +053058#endif
Becky Bruce0d4cee12010-06-17 11:37:20 -050059
Andy Fleming422effd2011-04-08 02:10:54 -050060/* The TSEC driver uses the PHYLIB infrastructure */
Zhao Qiangda6b88d2018-02-07 10:01:56 +080061#if defined(CONFIG_TSEC_ENET) && defined(CONFIG_PHYLIB)
Andy Fleming422effd2011-04-08 02:10:54 -050062#include <config_phylib_all_drivers.h>
63#endif /* TSEC_ENET */
Andy Fleming422effd2011-04-08 02:10:54 -050064
Kumar Gala2683c532011-04-13 08:37:44 -050065/* The FMAN driver uses the PHYLIB infrastructure */
Kumar Gala2683c532011-04-13 08:37:44 -050066
Albert Aribaud036c6b42010-08-08 05:17:05 +053067/* All PPC boards must swap IDE bytes */
68#define CONFIG_IDE_SWAP_IO
69
Mario Six7cab1472018-08-06 10:23:36 +020070#if defined(CONFIG_DM_SERIAL) && !defined(CONFIG_CLK_MPC83XX)
Thomas Chou78b98812015-11-19 21:48:07 +080071/*
72 * TODO: Convert this to a clock driver exists that can give us the UART
73 * clock here.
74 */
75#define CONFIG_SYS_NS16550_CLK get_serial_clock()
76#endif
77
Peter Tyserae7a7d42009-06-30 17:15:40 -050078#endif /* _ASM_CONFIG_H_ */