diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-08-17 20:31:09 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-08-17 20:31:09 +0000 |
commit | 8a02b7d54eab215592c72e1a9dd9f998de98abd8 (patch) | |
tree | f0c97835c5c452637e56ba3cd8947c3bb5f33029 /src/superio/smsc/lpc47m10x/chip.h | |
parent | bff323b93b8cdee0362d1351b8fde54fd2c66e45 (diff) | |
download | coreboot-8a02b7d54eab215592c72e1a9dd9f998de98abd8.tar.xz |
add smsc part. Mod sun board to use smsc part for now
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2380 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/smsc/lpc47m10x/chip.h')
-rw-r--r-- | src/superio/smsc/lpc47m10x/chip.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/superio/smsc/lpc47m10x/chip.h b/src/superio/smsc/lpc47m10x/chip.h new file mode 100644 index 0000000000..ce63a53a28 --- /dev/null +++ b/src/superio/smsc/lpc47m10x/chip.h @@ -0,0 +1,10 @@ +struct chip_operations; +extern struct chip_operations superio_smsc_lpc47m10x_ops; + +#include <pc80/keyboard.h> +#include <uart8250.h> + +struct superio_smsc_lpc47m10x_config { + struct uart8250 com1, com2; + struct pc_keyboard keyboard; +}; |