From 53bff629f2e9865656beabd81e6ce1eab7c728a9 Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Thu, 2 Oct 2014 15:37:46 -0700 Subject: [PATCH] rk3288/pinky: Move uart address to mainboard Kconfig Since the UART which is used for the serial console may change from board-to-board, this moves CONSOLE_SERIAL_UART_ADDRESS from rk3288's Kconfig into Pinky's Kconfig. BUG=none BRANCH=none TEST=built and booted on pinky Signed-off-by: David Hendricks Change-Id: I29837a72d8cf205a144494a6c8ce350465118b34 Reviewed-on: https://chromium-review.googlesource.com/221438 Reviewed-by: Julius Werner --- src/mainboard/google/veyron_pinky/Kconfig | 5 +++++ src/soc/rockchip/rk3288/Kconfig | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/mainboard/google/veyron_pinky/Kconfig b/src/mainboard/google/veyron_pinky/Kconfig index 3184bab081..76ff6dcabd 100644 --- a/src/mainboard/google/veyron_pinky/Kconfig +++ b/src/mainboard/google/veyron_pinky/Kconfig @@ -72,4 +72,9 @@ config DRIVER_TPM_I2C_ADDR hex default 0x20 +config CONSOLE_SERIAL_UART_ADDRESS + hex + depends on CONSOLE_SERIAL_UART + default 0xFF690000 + endif # BOARD_GOOGLE_VEYRON_PINKY diff --git a/src/soc/rockchip/rk3288/Kconfig b/src/soc/rockchip/rk3288/Kconfig index 142fbe1d06..db07753a54 100644 --- a/src/soc/rockchip/rk3288/Kconfig +++ b/src/soc/rockchip/rk3288/Kconfig @@ -57,9 +57,4 @@ config CBFS_ROM_OFFSET hex default 0x0018000 -config CONSOLE_SERIAL_UART_ADDRESS - hex - depends on CONSOLE_SERIAL_UART - default 0xFF690000 - endif