mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-14 15:23:07 +00:00
9591b63531
This converts the following to Kconfig: CONFIG_SPL_NS16550_MIN_FUNCTIONS CONFIG_SYS_NS16550_MEM32 CONFIG_SYS_NS16550_PORT_MAPPED CONFIG_SYS_NS16550_REG_SIZE CONFIG_SYS_NS16550_SERIAL To do this we also introduce CONFIG_SPL_SYS_NS16550_SERIAL so that platforms can enable the legacy driver here for SPL. Signed-off-by: Tom Rini <trini@konsulko.com>
17 lines
345 B
C
17 lines
345 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2014 Broadcom Corporation.
|
|
*/
|
|
|
|
#ifndef __ARCH_CONFIGS_H
|
|
#define __ARCH_CONFIGS_H
|
|
|
|
#include <asm/iproc-common/configs.h>
|
|
|
|
/* uArchitecture specifics */
|
|
|
|
/* Serial Info */
|
|
#define CONFIG_SYS_NS16550_CLK 0x03b9aca0
|
|
#define CONFIG_SYS_NS16550_COM1 0x18000300
|
|
|
|
#endif /* __ARCH_CONFIGS_H */
|