blob: 79fe567b5875577c4eba9a9e10d1c93eec4c358e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Kumar Gala47d41cc2009-02-05 20:40:57 -06002/*
Poonam Aggrwalb8cdd012011-01-13 21:39:27 +05303 * Copyright 2009-2011 Freescale Semiconductor, Inc.
Kumar Gala47d41cc2009-02-05 20:40:57 -06004 */
5
6#ifndef _ASM_CONFIG_H_
7#define _ASM_CONFIG_H_
8
Kumar Gala243be8e2011-01-19 03:05:26 -06009#ifdef CONFIG_MPC85xx
10#include <asm/config_mpc85xx.h>
11#endif
12
York Sun7ac3cc22012-08-17 09:00:54 +000013#ifndef HWCONFIG_BUFFER_SIZE
14 #define HWCONFIG_BUFFER_SIZE 256
15#endif
16
Kumar Gala87c90632009-02-05 20:40:58 -060017#ifndef CONFIG_MAX_MEM_MAPPED
Heiko Schocher98f705c2017-06-27 16:49:14 +020018#if defined(CONFIG_E500) || \
York Sund29d17d2011-08-26 11:32:44 -070019 defined(CONFIG_MPC86xx) || \
20 defined(CONFIG_E300)
Kumar Gala87c90632009-02-05 20:40:58 -060021#define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
22#else
Stefan Roese2ede8792009-02-11 09:37:12 +010023#define CONFIG_MAX_MEM_MAPPED (256 << 20)
Kumar Gala87c90632009-02-05 20:40:58 -060024#endif
25#endif
26
Peter Tyser5ccd29c2009-10-23 15:55:47 -050027/*
28 * Provide a default boot page translation virtual address that lines up with
29 * Freescale's default e500 reset page.
30 */
31#if (defined(CONFIG_E500) && defined(CONFIG_MP))
Tom Rini0b5870c2022-03-11 09:12:03 -050032#define BPTR_VIRT_ADDR 0xfffff000
Peter Tyser5ccd29c2009-10-23 15:55:47 -050033#endif
34
Becky Brucef51cdaf2010-06-17 11:37:20 -050035/* Since so many PPC SOCs have a semi-common LBC, define this here */
36#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) || \
37 defined(CONFIG_MPC83xx)
Dipen Dudhatd789b5f2011-01-20 16:29:35 +053038#if !defined(CONFIG_FSL_IFC)
Becky Brucef51cdaf2010-06-17 11:37:20 -050039#define CONFIG_FSL_LBC
40#endif
Dipen Dudhatd789b5f2011-01-20 16:29:35 +053041#endif
Becky Brucef51cdaf2010-06-17 11:37:20 -050042
Andy Fleming063c1262011-04-08 02:10:54 -050043/* The TSEC driver uses the PHYLIB infrastructure */
Zhao Qiang990d06b2018-02-07 10:01:56 +080044#if defined(CONFIG_TSEC_ENET) && defined(CONFIG_PHYLIB)
Andy Fleming063c1262011-04-08 02:10:54 -050045#include <config_phylib_all_drivers.h>
46#endif /* TSEC_ENET */
Andy Fleming063c1262011-04-08 02:10:54 -050047
Kumar Galac916d7c2011-04-13 08:37:44 -050048/* The FMAN driver uses the PHYLIB infrastructure */
Kumar Galac916d7c2011-04-13 08:37:44 -050049
Mario Six07d538d2018-08-06 10:23:36 +020050#if defined(CONFIG_DM_SERIAL) && !defined(CONFIG_CLK_MPC83XX)
Thomas Chouf27445c2015-11-19 21:48:07 +080051/*
52 * TODO: Convert this to a clock driver exists that can give us the UART
53 * clock here.
54 */
55#define CONFIG_SYS_NS16550_CLK get_serial_clock()
56#endif
57
Peter Tyser017f11f2009-06-30 17:15:40 -050058#endif /* _ASM_CONFIG_H_ */