mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
0f9595b9fa
Use moveconfig.py script to convert define CONFIG_SYS_MAX_FLASH_BANKS and CONFIG_SYS_MAX_FLASH_BANKS_DETECT to Kconfig and move these entries to defconfigs. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Stefan Roese <sr@denx.de> [trini: Re-switch to IS_ENABLED check in spi-nor-core.c, re-run migration] Signed-off-by: Tom Rini <trini@konsulko.com>
31 lines
703 B
C
31 lines
703 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2018 Cisco Systems, Inc.
|
|
*
|
|
* Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
|
|
*
|
|
* Configuration settings for the Broadcom BCM7445 SoC family.
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#define CONFIG_SYS_NS16550_COM1 0xf040ab00
|
|
|
|
#define CONFIG_SYS_INIT_RAM_ADDR 0x80200000
|
|
|
|
#include "bcmstb.h"
|
|
|
|
#define BCMSTB_TIMER_LOW 0xf0412008
|
|
#define BCMSTB_TIMER_HIGH 0xf041200c
|
|
#define BCMSTB_TIMER_FREQUENCY 0xf0412020
|
|
#define BCMSTB_HIF_MSPI_BASE 0xf03e3400
|
|
#define BCMSTB_BSPI_BASE 0xf03e3200
|
|
#define BCMSTB_HIF_SPI_INTR2 0xf03e1a00
|
|
#define BCMSTB_CS_REG 0xf03e0920
|
|
|
|
/*
|
|
* Environment configuration for SPI flash.
|
|
*/
|
|
|
|
#endif /* __CONFIG_H */
|