2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2017-04-24 22:39:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_BMIPS_BCM6358_H
|
|
|
|
#define __CONFIG_BMIPS_BCM6358_H
|
|
|
|
|
2019-08-30 09:54:27 +00:00
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
2017-04-24 22:39:21 +00:00
|
|
|
/* CPU */
|
|
|
|
#define CONFIG_SYS_MIPS_TIMER_FREQ 150000000
|
|
|
|
|
|
|
|
/* RAM */
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
|
2018-02-04 10:19:12 +00:00
|
|
|
/* USB */
|
|
|
|
#define CONFIG_EHCI_DESC_BIG_ENDIAN
|
|
|
|
#define CONFIG_EHCI_MMIO_BIG_ENDIAN
|
|
|
|
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
|
|
|
|
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
|
2020-04-04 14:01:12 +00:00
|
|
|
#if defined(CONFIG_USB_OHCI_HCD)
|
2018-02-04 10:19:12 +00:00
|
|
|
#define CONFIG_USB_OHCI_NEW
|
2020-04-04 14:01:12 +00:00
|
|
|
#endif /* CONFIG_USB_OHCI_HCD */
|
2018-02-04 10:19:12 +00:00
|
|
|
|
2017-04-24 22:39:21 +00:00
|
|
|
/* U-Boot */
|
|
|
|
|
|
|
|
#if defined(CONFIG_BMIPS_BOOT_RAM)
|
2019-08-30 09:54:27 +00:00
|
|
|
#define CONFIG_SYS_INIT_SP_OFFSET SZ_8K
|
2017-04-24 22:39:21 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CONFIG_SYS_FLASH_BASE 0xbe000000
|
|
|
|
#define CONFIG_SYS_FLASH_EMPTY_INFO
|
|
|
|
#define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1
|
|
|
|
|
|
|
|
#endif /* __CONFIG_BMIPS_BCM6358_H */
|