mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
a86ac9540e
Since commit 0e7368c6c4
(kbuild: prepare for moving headers into
mach-*/include/mach), we can replace #include <asm/arch/*.h> with
<mach/*.h> so we do not need to create the symbolic link during the
build.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
27 lines
553 B
C
27 lines
553 B
C
/*
|
|
* Copyright (C) 2014 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)
|
|
|
|
struct uniphier_ehci_platform_data uniphier_ehci_platdata[] = {
|
|
{
|
|
.base = 0x5a800100,
|
|
},
|
|
{
|
|
.base = 0x5a810100,
|
|
},
|
|
{
|
|
.base = 0x5a820100,
|
|
},
|
|
};
|