This commit is contained in:
Jasmine Iwanek
2022-03-13 09:57:57 -04:00
parent 98be04c955
commit a61379eaee
23 changed files with 688 additions and 502 deletions

View File

@@ -884,53 +884,72 @@ fdc37c93x_init(const device_t *info)
return dev;
}
const device_t fdc37c931apm_device = {
"SMC FDC37C932QF Super I/O",
"fdc37c931apm",
0,
0x130, /* Share the same ID with the 932QF. */
fdc37c93x_init, fdc37c93x_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "SMC FDC37C932QF Super I/O",
.internal_name = "fdc37c931apm",
.flags = 0,
.local = 0x130, /* Share the same ID with the 932QF. */
.init = fdc37c93x_init,
.close = fdc37c93x_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};
const device_t fdc37c931apm_compaq_device = {
"SMC FDC37C932QF Super I/O (Compaq Presario 4500)",
"fdc37c931apm_compaq",
0,
0x330, /* Share the same ID with the 932QF. */
fdc37c93x_init, fdc37c93x_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "SMC FDC37C932QF Super I/O (Compaq Presario 4500)",
.internal_name = "fdc37c931apm_compaq",
.flags = 0,
.local = 0x330, /* Share the same ID with the 932QF. */
.init = fdc37c93x_init,
.close = fdc37c93x_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};
const device_t fdc37c932fr_device = {
"SMC FDC37C932FR Super I/O",
"fdc37c932fr",
0,
0x03,
fdc37c93x_init, fdc37c93x_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "SMC FDC37C932FR Super I/O",
.internal_name = "fdc37c932fr",
.flags = 0,
.local = 0x03,
.init = fdc37c93x_init,
.close = fdc37c93x_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};
const device_t fdc37c932qf_device = {
"SMC FDC37C932QF Super I/O",
"fdc37c932qf",
0,
0x30,
fdc37c93x_init, fdc37c93x_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "SMC FDC37C932QF Super I/O",
.internal_name = "fdc37c932qf",
.flags = 0,
.local = 0x30,
.init = fdc37c93x_init,
.close = fdc37c93x_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};
const device_t fdc37c935_device = {
"SMC FDC37C935 Super I/O",
"fdc37c935",
0,
0x02,
fdc37c93x_init, fdc37c93x_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "SMC FDC37C935 Super I/O",
.internal_name = "fdc37c935",
.flags = 0,
.local = 0x02,
.init = fdc37c93x_init,
.close = fdc37c93x_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};