• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SUPERIO_SMSC_SIO1306_H
4 #define SUPERIO_SMSC_SIO1306_H
5 
6 #define SIO1036_SP1		0 /* Com1 */
7 
8 #define UART_POWER_DOWN		(1 << 7)
9 #define LPT_POWER_DOWN		(1 << 2)
10 #define IR_OUTPUT_MUX		(1 << 6)
11 
12 #include <device/pnp_type.h>
13 #include <stdint.h>
14 
15 void sio1036_enable_serial(pnp_devfn_t dev, u16 iobase);
16 
17 #endif /* SUPERIO_SMSC_SIO1306_H */
18