upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
460 B
20 lines
460 B
/*
|
|
* UniPhier MIO (Media I/O) registers
|
|
*
|
|
* Copyright (C) 2014 Panasonic Corporation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef ARCH_MIO_REGS_H
|
|
#define ARCH_MIO_REGS_H
|
|
|
|
#define MIO_BASE 0x59810000
|
|
|
|
#define MIO_CLKCTRL(i) (MIO_BASE + 0x200 * (i) + 0x0020)
|
|
#define MIO_RSTCTRL(i) (MIO_BASE + 0x200 * (i) + 0x0110)
|
|
#define MIO_USB_RSTCTRL(i) (MIO_BASE + 0x200 * (i) + 0x0114)
|
|
|
|
#define MIO_USB_RSTCTRL_XRST (0x1 << 0)
|
|
|
|
#endif /* ARCH_MIO_REGS_H */
|
|
|