]>
Commit | Line | Data |
---|---|---|
3c4e084d JP |
1 | /* firstrun.c |
2 | * First-run handler | |
3 | * NetWatch system management mode administration console | |
4 | * | |
5 | * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. | |
6 | * This program is free software; you can redistribute and/or modify it under | |
7 | * the terms found in the file LICENSE in the root of this source tree. | |
8 | * | |
9 | */ | |
10 | ||
9e2a82e4 JP |
11 | #include <io.h> |
12 | #include <smi.h> | |
13 | #include <pci.h> | |
14 | #include <reg-82801b.h> | |
15 | #include <output.h> | |
16 | #include "vga-overlay.h" | |
17 | #include <smram.h> | |
cdde55f5 | 18 | #include <text.h> |
9e2a82e4 | 19 | #include "../net/net.h" |
74032dae | 20 | #include <crc32.h> |
9e2a82e4 JP |
21 | |
22 | extern int _bss, _bssend; | |
23 | ||
24 | extern void timer_handler(smi_event_t ev); | |
25 | extern void kbc_handler(smi_event_t ev); | |
26 | extern void gbl_rls_handler(smi_event_t ev); | |
27 | ||
34a7d0d2 JW |
28 | extern pci_driver_t *drivers[]; |
29 | ||
722e5aea | 30 | void smi_init() { |
9e2a82e4 | 31 | smram_state_t smram; |
34a7d0d2 | 32 | pci_driver_t **driver; |
9e2a82e4 JP |
33 | |
34 | smram = smram_save_state(); | |
35 | smram_tseg_set_state(SMRAM_TSEG_OPEN); | |
722e5aea | 36 | |
9e2a82e4 JP |
37 | outputf("NetWatch running"); |
38 | ||
9e2a82e4 JP |
39 | /* Turn on the SMIs we want */ |
40 | smi_disable(); | |
9e2a82e4 JP |
41 | |
42 | eth_init(); | |
34a7d0d2 | 43 | |
74032dae JW |
44 | crc32_init(); |
45 | ||
34a7d0d2 JW |
46 | /* After everything is initialized, load drivers. */ |
47 | for (driver = drivers; *driver; driver++) | |
48 | { | |
49 | outputf("Probing driver: %s", (*driver)->name); | |
50 | if (pci_probe_driver(*driver)) | |
51 | output("Found a card"); | |
52 | } | |
53 | outputf("Driver probe complete"); | |
cdde55f5 JW |
54 | |
55 | /* Load in fonts. */ | |
56 | text_init(); | |
722e5aea | 57 | |
9e2a82e4 JP |
58 | smi_register_handler(SMI_EVENT_FAST_TIMER, timer_handler); |
59 | smi_enable_event(SMI_EVENT_FAST_TIMER); | |
722e5aea | 60 | |
9e2a82e4 JP |
61 | smi_register_handler(SMI_EVENT_DEVTRAP_KBC, kbc_handler); |
62 | smi_enable_event(SMI_EVENT_DEVTRAP_KBC); | |
63 | ||
64 | smi_register_handler(SMI_EVENT_GBL_RLS, gbl_rls_handler); | |
65 | smi_enable_event(SMI_EVENT_GBL_RLS); | |
722e5aea | 66 | |
9e2a82e4 JP |
67 | smi_enable(); |
68 | ||
69 | vga_flush_imm(1); | |
70 | ||
71 | smram_restore_state(smram); | |
72 | } | |
73 |