2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2018-01-20 18:16:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Álvaro Fernández Rojas <noltari@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_BMIPS_BCM6318_H
|
|
|
|
#define __CONFIG_BMIPS_BCM6318_H
|
|
|
|
|
2019-08-30 09:54:27 +00:00
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
2018-01-20 18:16:04 +00:00
|
|
|
/* CPU */
|
|
|
|
#define CONFIG_SYS_MIPS_TIMER_FREQ 166500000
|
|
|
|
|
|
|
|
/* RAM */
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
|
2018-02-04 20:11:16 +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 20:11:16 +00:00
|
|
|
#define CONFIG_USB_OHCI_NEW
|
2020-04-04 14:01:12 +00:00
|
|
|
#endif /* CONFIG_USB_OHCI_HCD */
|
2018-02-04 20:11:16 +00:00
|
|
|
|
2018-01-20 18:16:04 +00:00
|
|
|
/* U-Boot */
|
2019-08-30 09:54:27 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
|
2018-01-20 18:16:04 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_BMIPS_BOOT_RAM)
|
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT
|
2019-08-30 09:54:27 +00:00
|
|
|
#define CONFIG_SYS_INIT_SP_OFFSET SZ_8K
|
2018-01-20 18:16:04 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __CONFIG_BMIPS_BCM6318_H */
|