Add #include guards to all Super I/O header files (trivial).
[coreboot.git] / src / superio / ite / it8671f / it8671f.h
index aec7fc154ae2ef924e78e88d61eee6d38c95e22b..dcf6ac6ad08ac495c294719c23b0c6bb0294e170 100644 (file)
@@ -1,4 +1,6 @@
 /*
+ * This file is part of the coreboot project.
+ *
  * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
  *
  * This program is free software; you can redistribute it and/or modify
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-// TODO: Untested, cut'n'pasted from some other file so it's probably wrong.
-// #define IT8671F_FDC  0x00 /* Floppy */
-// #define IT8671F_PP   0x01 /* Parallel port */
+#ifndef SUPERIO_ITE_IT8671F_IT8671F_H
+#define SUPERIO_ITE_IT8671F_IT8671F_H
+
+/* Datasheet: Not available online, got it from ITE per request. */
+
+#define IT8671F_FDC  0x00 /* Floppy */
+#define IT8671F_SP1  0x01 /* Com1 */
 #define IT8671F_SP2  0x02 /* Com2 */
-#define IT8671F_SP1  0x03 /* Com1 */
-// #define IT8671F_SWC  0x04
-// #define IT8671F_KBCM 0x05 /* Mouse */
-#define IT8671F_KBCK 0x06 /* Keyboard */
-// #define IT8671F_GPIO 0x07
-// #define IT8671F_ACB  0x08
-// #define IT8671F_FSCM 0x09
-// #define IT8671F_WDT  0x0A
-// #define IT8671F_GMP  0x0B
-// #define IT8671F_MIDI 0x0C
-// #define IT8671F_VLM  0x0D
-// #define IT8671F_TMS  0x0E
+#define IT8671F_PP   0x03 /* Parallel port */
+#define IT8671F_KBCK 0x05 /* PS/2 keyboard */
+#define IT8671F_KBCM 0x06 /* PS/2 mouse */
 
+#endif