mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
19268834fb
For starting a Linux console on the superio serial port under interrupt mode, the IRQ number must be configured. Signed-off-by: Jian Luo <jian.luo4@boschrexroth.de> Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
20 lines
552 B
C
20 lines
552 B
C
/*
|
|
* 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.
|
|
* @irq: Processor IRQ number to assign to this serial device.
|
|
*/
|
|
void lpc47m_enable_serial(u16 dev, u16 iobase, u8 irq);
|
|
|
|
#endif /* _SMSC_LPC47M_H_ */
|