Fix typo, add datasheet info, minor cosmetic fixes (trivial).
authorUwe Hermann <uwe@hermann-uwe.de>
Thu, 5 Apr 2007 19:58:29 +0000 (19:58 +0000)
committerUwe Hermann <uwe@hermann-uwe.de>
Thu, 5 Apr 2007 19:58:29 +0000 (19:58 +0000)
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2584 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/superio/fintek/f71805f/chip.h
src/superio/fintek/f71805f/f71805f.h
src/superio/fintek/f71805f/f71805f_early_serial.c

index 355e019569e8d9fec10916d0e38e626d62e53b6e..a256239e4ba4ac2d8b953259ead01eb23f935d4a 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#include <device/device.h>
 #include <uart8250.h>
 
-struct chip_operations;
+/* This chip doesn't have keyboard and mouse support. */
+
 extern struct chip_operations superio_fintek_f71805f_ops;
 
 struct superio_fintek_f71805f_config {
index 362794437340f671bc107e7509f6fe3d2e42dde7..e2ebd27dd09353a432bad5348d4359fdec79310f 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+/*
+ * Datasheet:
+ *  - Name: F71805F/FG Super H/W Monitor + LPC IO
+ *  - URL: http://www.fintek.com.tw/eng/products.asp?BID=1&SID=17
+ *  - PDF: http://www.fintek.com.tw/files/productfiles/F71805F_V025.pdf
+ *  - Revision: V0.25P
+ */ 
+
 /* Logical Device Numbers (LDN). */
-#define F71805F_FDC            0x00    /* Floppy */
-#define F71805F_SP1            0x01    /* UART1 */
-#define        F71805F_SP2             0x02    /* UART2 */
-#define F71805F_PP             0x03    /* Parallel Port */
-#define        F71805F_HWM             0x04    /* Hardware Monitor */
-#define        F71805F_GPIO            0x06    /* General Purpose I/O (GPIO) */
-#define        F71805F_PME             0x0a    /* Power Management Events (PME) */
-/* All others reserved. */
+#define F71805F_FDC    0x00    /* Floppy */
+#define F71805F_SP1    0x01    /* UART1 */
+#define        F71805F_SP2     0x02    /* UART2 */
+#define F71805F_PP     0x03    /* Parallel Port */
+#define        F71805F_HWM     0x04    /* Hardware Monitor */
+#define        F71805F_GPIO    0x06    /* General Purpose I/O (GPIO) */
+#define        F71805F_PME     0x0a    /* Power Management Events (PME) */
index 3c0406f59d718df467e69cbf14c8bb0b5294e537..68b253d2f09904d59071a50e7f91640728e7a9ab 100644 (file)
@@ -18,7 +18,7 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-/* Pre-RAM driver for the Fintek F81705F Super I/O chip. */
+/* Pre-RAM driver for the Fintek F71805F/FG Super I/O chip. */
 
 #include <arch/romcc_io.h>
 #include "f71805f.h"