mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
44f597adeb
Now UniPhier platform highly depends on Device Tree configuration (CONFIG_OF_CONTROL is select'ed by Kconfig). Since the EHCI is only used on main U-Boot, we can drop platform devices of the EHCI controllers. We still keep UART platform devices because they might be useful for SPL. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Marek Vasut <marex@denx.de>
15 lines
403 B
C
15 lines
403 B
C
/*
|
|
* Copyright (C) 2014-2015 Panasonic Corporation
|
|
* Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <mach/platdevice.h>
|
|
|
|
#define UART_MASTER_CLK 80000000
|
|
|
|
SERIAL_DEVICE(0, 0x54006800, UART_MASTER_CLK)
|
|
SERIAL_DEVICE(1, 0x54006900, UART_MASTER_CLK)
|
|
SERIAL_DEVICE(2, 0x54006a00, UART_MASTER_CLK)
|
|
SERIAL_DEVICE(3, 0x54006b00, UART_MASTER_CLK)
|