Initial revision.
[coreboot.git] / src / superio / smsc / lpc47b272 / chip.h
1 #ifndef SIO_COM1
2 #define SIO_COM1_BASE   0x3F8
3 #endif
4 #ifndef SIO_COM2
5 #define SIO_COM2_BASE   0x2F8
6 #endif
7
8 struct chip_operations;
9 extern struct chip_operations superio_smsc_lpc47b272_ops;
10
11 #include <pc80/keyboard.h>
12 #include <uart8250.h>
13
14 struct superio_smsc_lpc47b272_config {
15         struct uart8250 com1, com2;
16         struct pc_keyboard keyboard;
17 };