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.
19 lines
481 B
19 lines
481 B
/*
|
|
* Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _SMSC_LPC47M_H_
|
|
#define _SMSC_LPC47M_H_
|
|
|
|
/**
|
|
* Configure the base I/O port of the specified serial device and enable the
|
|
* serial device.
|
|
*
|
|
* @dev: High 8 bits = Super I/O port, low 8 bits = logical device number.
|
|
* @iobase: Processor I/O port address to assign to this serial device.
|
|
*/
|
|
void lpc47m_enable_serial(u16 dev, u16 iobase);
|
|
|
|
#endif /* _SMSC_LPC47M_H_ */
|
|
|