/* @END serial.h */
+ /* @BEGIN general.h
+ *
+ * Timer configuration
+ *
+ */
+ #define TIMER_BIOS /* 18Hz BIOS timer */
+ #define TIMER_RDTSC /* CPU TimeStamp Counter timer */
+
+ /* @END general.h */
+
/* @BEGIN isa.h
*
* ISA probe address configuration
#define ROUTE_CMD /* Routing table management commands */
#define IMAGE_CMD /* Image management commands */
#define DHCP_CMD /* DHCP management commands */
+#define SANBOOT_CMD /* SAN boot commands */
/* @END general.h */
REQUIRE_OBJECT ( syslog );
#endif
+ /*
+ * Timers
+ */
+
+ #ifdef TIMER_BIOS
+ REQUIRE_OBJECT ( timer_bios );
+ #endif
+
+ #ifdef TIMER_RDTSC
+ REQUIRE_OBJECT ( timer_rdtsc );
+ #endif
/*
* Drag in all requested protocols
*
#ifdef DHCP_CMD
REQUIRE_OBJECT ( dhcp_cmd );
#endif
+#ifdef SANBOOT_CMD
+REQUIRE_OBJECT ( sanboot_cmd );
+#endif
/*
* Drag in miscellaneous objects
#include <errno.h>
#include <gpxe/pci.h>
#include <gpxe/ethernet.h>
- #include "timer.h"
#include "string.h"
#include "tg3.h"
PCI_ROM(0x173b, 0x03e9, "tg3-ac1001", "Altima AC1001"),
PCI_ROM(0x173b, 0x03ea, "tg3-ac9100", "Altima AC9100"),
PCI_ROM(0x173b, 0x03eb, "tg3-ac1003", "Altima AC1003"),
+PCI_ROM(0x0e11, 0x00ca, "tg3-hp", "HP Tigon 3"),
};
PCI_DRIVER ( tg3_driver, tg3_nics, PCI_NO_CLASS );