blob: 354137124d89d1aeb0d0bb0e25f7158bbc4c870b [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
York Sune2cba152012-08-17 09:00:54 +000013#ifndef HWCONFIG_BUFFER_SIZE
14 #define HWCONFIG_BUFFER_SIZE 256
15#endif
16
John Rigbyeea8e692010-10-13 13:57:35 -060017#define CONFIG_SYS_BOOT_RAMDISK_HIGH
Mike Frysingera0dadf82009-11-03 11:35:59 -050018
Kumar Gala4cd44a82009-02-05 20:40:58 -060019#ifndef CONFIG_MAX_MEM_MAPPED
Heiko Schocher20280122017-06-27 16:49:14 +020020#if defined(CONFIG_E500) || \
York Sune12ce982011-08-26 11:32:44 -070021 defined(CONFIG_MPC86xx) || \
22 defined(CONFIG_E300)
Kumar Gala4cd44a82009-02-05 20:40:58 -060023#define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
24#else
Stefan Roesea14295e2009-02-11 09:37:12 +010025#define CONFIG_MAX_MEM_MAPPED (256 << 20)
Kumar Gala4cd44a82009-02-05 20:40:58 -060026#endif
27#endif
28
Peter Tyser7feaacb2009-10-23 15:55:47 -050029/*
30 * Provide a default boot page translation virtual address that lines up with
31 * Freescale's default e500 reset page.
32 */
33#if (defined(CONFIG_E500) && defined(CONFIG_MP))
34#ifndef CONFIG_BPTR_VIRT_ADDR
35#define CONFIG_BPTR_VIRT_ADDR 0xfffff000
36#endif
37#endif
38
Becky Bruce0d4cee12010-06-17 11:37:20 -050039/* Since so many PPC SOCs have a semi-common LBC, define this here */
40#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) || \
41 defined(CONFIG_MPC83xx)
Dipen Dudhat00c42942011-01-20 16:29:35 +053042#if !defined(CONFIG_FSL_IFC)
Becky Bruce0d4cee12010-06-17 11:37:20 -050043#define CONFIG_FSL_LBC
44#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +053045#endif
Becky Bruce0d4cee12010-06-17 11:37:20 -050046
Andy Fleming422effd2011-04-08 02:10:54 -050047/* The TSEC driver uses the PHYLIB infrastructure */
Zhao Qiangda6b88d2018-02-07 10:01:56 +080048#if defined(CONFIG_TSEC_ENET) && defined(CONFIG_PHYLIB)
Andy Fleming422effd2011-04-08 02:10:54 -050049#include <config_phylib_all_drivers.h>
50#endif /* TSEC_ENET */
Andy Fleming422effd2011-04-08 02:10:54 -050051
Kumar Gala2683c532011-04-13 08:37:44 -050052/* The FMAN driver uses the PHYLIB infrastructure */
Kumar Gala2683c532011-04-13 08:37:44 -050053
Mario Six7cab1472018-08-06 10:23:36 +020054#if defined(CONFIG_DM_SERIAL) && !defined(CONFIG_CLK_MPC83XX)
Thomas Chou78b98812015-11-19 21:48:07 +080055/*
56 * TODO: Convert this to a clock driver exists that can give us the UART
57 * clock here.
58 */
59#define CONFIG_SYS_NS16550_CLK get_serial_clock()
60#endif
61
Peter Tyserae7a7d42009-06-30 17:15:40 -050062#endif /* _ASM_CONFIG_H_ */