aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/motherboard.c
diff options
context:
space:
mode:
authorBjorn Helgaas <bjorn.helgaas@hp.com>2007-01-18 18:42:55 -0500
committerLen Brown <len.brown@intel.com>2007-01-26 02:08:12 -0500
commit9a47cdb1bb85e7944fb7419e4078c46516ef7335 (patch)
tree5ced6375a6c7299190cba4c700c9fa9269002a9e /drivers/acpi/motherboard.c
parentbb0958544f3c7c016b2a3025ab3694363e403aa1 (diff)
ACPI: move FADT resource reservations from motherboard driver to osl
Resources described by the FADT aren't really a good fit for the ACPI motherboard driver. The motherboard driver cares about PNP0C01 and PNP0C02 devices and their resources. The FADT describes some resources used by the ACPI core. Often, they are also described by by the _CRS of a motherboard device, but I think it's better to reserve them specifically in the ACPI osl.c because (a) the motherboard driver is optional and ACPI uses the resources even if the driver is absent, and (b) I want to remove the ACPI motherboard driver because it's mostly redundant with the PNP system.c driver. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/motherboard.c')
-rw-r--r--drivers/acpi/motherboard.c49
1 files changed, 0 insertions, 49 deletions
diff --git a/drivers/acpi/motherboard.c b/drivers/acpi/motherboard.c
index bedb5118e312..cddab7b29de8 100644
--- a/drivers/acpi/motherboard.c
+++ b/drivers/acpi/motherboard.c
@@ -118,58 +118,9 @@ static struct acpi_driver acpi_motherboard_driver = {
118 }, 118 },
119}; 119};
120 120
121static void __init acpi_request_region (struct acpi_generic_address *addr,
122 unsigned int length, char *desc)
123{
124 if (!addr->address || !length)
125 return;
126
127 if (addr->address_space_id == ACPI_ADR_SPACE_SYSTEM_IO)
128 request_region(addr->address, length, desc);
129 else if (addr->address_space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
130 request_mem_region(addr->address, length, desc);
131}
132
133static void __init acpi_reserve_resources(void)
134{
135 acpi_request_region(&acpi_gbl_FADT->xpm1a_evt_blk,
136 acpi_gbl_FADT->pm1_evt_len, "ACPI PM1a_EVT_BLK");
137
138 acpi_request_region(&acpi_gbl_FADT->xpm1b_evt_blk,
139 acpi_gbl_FADT->pm1_evt_len, "ACPI PM1b_EVT_BLK");
140
141 acpi_request_region(&acpi_gbl_FADT->xpm1a_cnt_blk,
142 acpi_gbl_FADT->pm1_cnt_len, "ACPI PM1a_CNT_BLK");
143
144 acpi_request_region(&acpi_gbl_FADT->xpm1b_cnt_blk,
145 acpi_gbl_FADT->pm1_cnt_len, "ACPI PM1b_CNT_BLK");
146
147 if (acpi_gbl_FADT->pm_tm_len == 4)
148 acpi_request_region(&acpi_gbl_FADT->xpm_tmr_blk, 4, "ACPI PM_TMR");
149
150 acpi_request_region(&acpi_gbl_FADT->xpm2_cnt_blk,
151 acpi_gbl_FADT->pm2_cnt_len, "ACPI PM2_CNT_BLK");
152
153 /* Length of GPE blocks must be a non-negative multiple of 2 */
154
155 if (!(acpi_gbl_FADT->gpe0_blk_len & 0x1))
156 acpi_request_region(&acpi_gbl_FADT->xgpe0_blk,
157 acpi_gbl_FADT->gpe0_blk_len, "ACPI GPE0_BLK");
158
159 if (!(acpi_gbl_FADT->gpe1_blk_len & 0x1))
160 acpi_request_region(&acpi_gbl_FADT->xgpe1_blk,
161 acpi_gbl_FADT->gpe1_blk_len, "ACPI GPE1_BLK");
162}
163
164static int __init acpi_motherboard_init(void) 121static int __init acpi_motherboard_init(void)
165{ 122{
166 acpi_bus_register_driver(&acpi_motherboard_driver); 123 acpi_bus_register_driver(&acpi_motherboard_driver);
167 /*
168 * Guarantee motherboard IO reservation first
169 * This module must run after scan.c
170 */
171 if (!acpi_disabled)
172 acpi_reserve_resources();
173 return 0; 124 return 0;
174} 125}
175 126