blob: fcb7807ea8b73de79163bb99c20091f4b202da0d [file] [log] [blame]
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +01001/*
2 * drivers/acpi/resource.c - ACPI device resources interpretation.
3 *
4 * Copyright (C) 2012, Intel Corp.
5 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 *
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 */
24
25#include <linux/acpi.h>
26#include <linux/device.h>
27#include <linux/export.h>
28#include <linux/ioport.h>
Rafael J. Wysocki0f1b4142015-06-18 18:32:02 +020029#include <linux/list.h>
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +010030#include <linux/slab.h>
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +010031
32#ifdef CONFIG_X86
33#define valid_IRQ(i) (((i) != 0) && ((i) != 2))
34#else
35#define valid_IRQ(i) (true)
36#endif
37
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +080038static bool acpi_dev_resource_len_valid(u64 start, u64 end, u64 len, bool io)
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +010039{
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +080040 u64 reslen = end - start + 1;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +010041
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +080042 /*
43 * CHECKME: len might be required to check versus a minimum
44 * length as well. 1 for io is fine, but for memory it does
45 * not make any sense at all.
Jiang Liuaa714d22015-03-04 16:47:12 +080046 * Note: some BIOSes report incorrect length for ACPI address space
47 * descriptor, so remove check of 'reslen == len' to avoid regression.
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +080048 */
Jiang Liuaa714d22015-03-04 16:47:12 +080049 if (len && reslen && start <= end)
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +080050 return true;
51
Rafael J. Wysocki6a239af2015-02-18 08:05:43 +010052 pr_debug("ACPI: invalid or unassigned resource %s [%016llx - %016llx] length [%016llx]\n",
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +080053 io ? "io" : "mem", start, end, len);
54
55 return false;
56}
57
58static void acpi_dev_memresource_flags(struct resource *res, u64 len,
Thomas Gleixner72e26b02015-02-02 10:42:52 +080059 u8 write_protect)
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +080060{
61 res->flags = IORESOURCE_MEM;
62
63 if (!acpi_dev_resource_len_valid(res->start, res->end, len, false))
Jiang Liuc78b6882015-02-02 10:42:56 +080064 res->flags |= IORESOURCE_DISABLED | IORESOURCE_UNSET;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +010065
66 if (write_protect == ACPI_READ_WRITE_MEMORY)
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +080067 res->flags |= IORESOURCE_MEM_WRITEABLE;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +010068}
69
70static void acpi_dev_get_memresource(struct resource *res, u64 start, u64 len,
71 u8 write_protect)
72{
73 res->start = start;
74 res->end = start + len - 1;
Thomas Gleixner72e26b02015-02-02 10:42:52 +080075 acpi_dev_memresource_flags(res, len, write_protect);
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +010076}
77
78/**
79 * acpi_dev_resource_memory - Extract ACPI memory resource information.
80 * @ares: Input ACPI resource object.
81 * @res: Output generic resource object.
82 *
83 * Check if the given ACPI resource object represents a memory resource and
84 * if that's the case, use the information in it to populate the generic
85 * resource object pointed to by @res.
Jiang Liu581c19f2015-02-02 10:42:55 +080086 *
87 * Return:
88 * 1) false with res->flags setting to zero: not the expected resource type
89 * 2) false with IORESOURCE_DISABLED in res->flags: valid unassigned resource
90 * 3) true: valid assigned resource
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +010091 */
92bool acpi_dev_resource_memory(struct acpi_resource *ares, struct resource *res)
93{
94 struct acpi_resource_memory24 *memory24;
95 struct acpi_resource_memory32 *memory32;
96 struct acpi_resource_fixed_memory32 *fixed_memory32;
97
98 switch (ares->type) {
99 case ACPI_RESOURCE_TYPE_MEMORY24:
100 memory24 = &ares->data.memory24;
Jiang Liu8515f932015-02-02 10:42:54 +0800101 acpi_dev_get_memresource(res, memory24->minimum << 8,
102 memory24->address_length << 8,
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100103 memory24->write_protect);
104 break;
105 case ACPI_RESOURCE_TYPE_MEMORY32:
106 memory32 = &ares->data.memory32;
107 acpi_dev_get_memresource(res, memory32->minimum,
108 memory32->address_length,
109 memory32->write_protect);
110 break;
111 case ACPI_RESOURCE_TYPE_FIXED_MEMORY32:
112 fixed_memory32 = &ares->data.fixed_memory32;
113 acpi_dev_get_memresource(res, fixed_memory32->address,
114 fixed_memory32->address_length,
115 fixed_memory32->write_protect);
116 break;
117 default:
Jiang Liu581c19f2015-02-02 10:42:55 +0800118 res->flags = 0;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100119 return false;
120 }
Thomas Gleixnerc420dbd2015-02-02 10:42:48 +0800121
122 return !(res->flags & IORESOURCE_DISABLED);
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100123}
124EXPORT_SYMBOL_GPL(acpi_dev_resource_memory);
125
Thomas Gleixner1d0420f2015-02-02 10:42:49 +0800126static void acpi_dev_ioresource_flags(struct resource *res, u64 len,
Thomas Gleixner72e26b02015-02-02 10:42:52 +0800127 u8 io_decode)
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100128{
Thomas Gleixner1d0420f2015-02-02 10:42:49 +0800129 res->flags = IORESOURCE_IO;
130
131 if (!acpi_dev_resource_len_valid(res->start, res->end, len, true))
Jiang Liuc78b6882015-02-02 10:42:56 +0800132 res->flags |= IORESOURCE_DISABLED | IORESOURCE_UNSET;
Thomas Gleixner1d0420f2015-02-02 10:42:49 +0800133
134 if (res->end >= 0x10003)
Jiang Liuc78b6882015-02-02 10:42:56 +0800135 res->flags |= IORESOURCE_DISABLED | IORESOURCE_UNSET;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100136
137 if (io_decode == ACPI_DECODE_16)
Thomas Gleixner1d0420f2015-02-02 10:42:49 +0800138 res->flags |= IORESOURCE_IO_16BIT_ADDR;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100139}
140
141static void acpi_dev_get_ioresource(struct resource *res, u64 start, u64 len,
142 u8 io_decode)
143{
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100144 res->start = start;
Thomas Gleixner1d0420f2015-02-02 10:42:49 +0800145 res->end = start + len - 1;
Thomas Gleixner72e26b02015-02-02 10:42:52 +0800146 acpi_dev_ioresource_flags(res, len, io_decode);
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100147}
148
149/**
150 * acpi_dev_resource_io - Extract ACPI I/O resource information.
151 * @ares: Input ACPI resource object.
152 * @res: Output generic resource object.
153 *
154 * Check if the given ACPI resource object represents an I/O resource and
155 * if that's the case, use the information in it to populate the generic
156 * resource object pointed to by @res.
Jiang Liu581c19f2015-02-02 10:42:55 +0800157 *
158 * Return:
159 * 1) false with res->flags setting to zero: not the expected resource type
160 * 2) false with IORESOURCE_DISABLED in res->flags: valid unassigned resource
161 * 3) true: valid assigned resource
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100162 */
163bool acpi_dev_resource_io(struct acpi_resource *ares, struct resource *res)
164{
165 struct acpi_resource_io *io;
166 struct acpi_resource_fixed_io *fixed_io;
167
168 switch (ares->type) {
169 case ACPI_RESOURCE_TYPE_IO:
170 io = &ares->data.io;
171 acpi_dev_get_ioresource(res, io->minimum,
172 io->address_length,
173 io->io_decode);
174 break;
175 case ACPI_RESOURCE_TYPE_FIXED_IO:
176 fixed_io = &ares->data.fixed_io;
177 acpi_dev_get_ioresource(res, fixed_io->address,
178 fixed_io->address_length,
179 ACPI_DECODE_10);
180 break;
181 default:
Jiang Liu581c19f2015-02-02 10:42:55 +0800182 res->flags = 0;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100183 return false;
184 }
Thomas Gleixner1d0420f2015-02-02 10:42:49 +0800185
186 return !(res->flags & IORESOURCE_DISABLED);
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100187}
188EXPORT_SYMBOL_GPL(acpi_dev_resource_io);
189
Jiang Liua49170b2015-02-02 10:42:58 +0800190static bool acpi_decode_space(struct resource_win *win,
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800191 struct acpi_resource_address *addr,
192 struct acpi_address64_attribute *attr)
193{
194 u8 iodec = attr->granularity == 0xfff ? ACPI_DECODE_10 : ACPI_DECODE_16;
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800195 bool wp = addr->info.mem.write_protect;
196 u64 len = attr->address_length;
Jiang Liua49170b2015-02-02 10:42:58 +0800197 struct resource *res = &win->res;
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800198
Jiang Liua2740192015-02-02 10:42:57 +0800199 /*
200 * Filter out invalid descriptor according to ACPI Spec 5.0, section
201 * 6.4.3.5 Address Space Resource Descriptors.
202 */
203 if ((addr->min_address_fixed != addr->max_address_fixed && len) ||
204 (addr->min_address_fixed && addr->max_address_fixed && !len))
205 pr_debug("ACPI: Invalid address space min_addr_fix %d, max_addr_fix %d, len %llx\n",
206 addr->min_address_fixed, addr->max_address_fixed, len);
207
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800208 res->start = attr->minimum;
209 res->end = attr->maximum;
210
Jiang Liu2ea3d262015-02-02 10:42:59 +0800211 /*
212 * For bridges that translate addresses across the bridge,
213 * translation_offset is the offset that must be added to the
214 * address on the secondary side to obtain the address on the
215 * primary side. Non-bridge devices must list 0 for all Address
216 * Translation offset bits.
217 */
218 if (addr->producer_consumer == ACPI_PRODUCER) {
219 res->start += attr->translation_offset;
220 res->end += attr->translation_offset;
221 } else if (attr->translation_offset) {
222 pr_debug("ACPI: translation_offset(%lld) is invalid for non-bridge device.\n",
223 attr->translation_offset);
224 }
225
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800226 switch (addr->resource_type) {
227 case ACPI_MEMORY_RANGE:
Thomas Gleixner72e26b02015-02-02 10:42:52 +0800228 acpi_dev_memresource_flags(res, len, wp);
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800229 break;
230 case ACPI_IO_RANGE:
Thomas Gleixner72e26b02015-02-02 10:42:52 +0800231 acpi_dev_ioresource_flags(res, len, iodec);
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800232 break;
233 case ACPI_BUS_NUMBER_RANGE:
234 res->flags = IORESOURCE_BUS;
235 break;
236 default:
237 return false;
238 }
239
Jiang Liua49170b2015-02-02 10:42:58 +0800240 win->offset = attr->translation_offset;
241
Thomas Gleixner72e26b02015-02-02 10:42:52 +0800242 if (addr->producer_consumer == ACPI_PRODUCER)
243 res->flags |= IORESOURCE_WINDOW;
244
Thomas Gleixnerfcb29bb2015-02-02 10:42:53 +0800245 if (addr->info.mem.caching == ACPI_PREFETCHABLE_MEMORY)
246 res->flags |= IORESOURCE_PREFETCH;
247
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800248 return !(res->flags & IORESOURCE_DISABLED);
249}
250
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100251/**
252 * acpi_dev_resource_address_space - Extract ACPI address space information.
253 * @ares: Input ACPI resource object.
Jiang Liua49170b2015-02-02 10:42:58 +0800254 * @win: Output generic resource object.
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100255 *
256 * Check if the given ACPI resource object represents an address space resource
257 * and if that's the case, use the information in it to populate the generic
Jiang Liua49170b2015-02-02 10:42:58 +0800258 * resource object pointed to by @win.
Jiang Liu581c19f2015-02-02 10:42:55 +0800259 *
260 * Return:
Jiang Liua49170b2015-02-02 10:42:58 +0800261 * 1) false with win->res.flags setting to zero: not the expected resource type
262 * 2) false with IORESOURCE_DISABLED in win->res.flags: valid unassigned
263 * resource
Jiang Liu581c19f2015-02-02 10:42:55 +0800264 * 3) true: valid assigned resource
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100265 */
266bool acpi_dev_resource_address_space(struct acpi_resource *ares,
Jiang Liua49170b2015-02-02 10:42:58 +0800267 struct resource_win *win)
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100268{
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100269 struct acpi_resource_address64 addr;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100270
Jiang Liua49170b2015-02-02 10:42:58 +0800271 win->res.flags = 0;
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800272 if (ACPI_FAILURE(acpi_resource_to_address64(ares, &addr)))
Jiang Liu6658c732014-10-27 13:21:35 +0800273 return false;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100274
Jiang Liua49170b2015-02-02 10:42:58 +0800275 return acpi_decode_space(win, (struct acpi_resource_address *)&addr,
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800276 &addr.address);
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100277}
278EXPORT_SYMBOL_GPL(acpi_dev_resource_address_space);
279
280/**
281 * acpi_dev_resource_ext_address_space - Extract ACPI address space information.
282 * @ares: Input ACPI resource object.
Jiang Liua49170b2015-02-02 10:42:58 +0800283 * @win: Output generic resource object.
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100284 *
285 * Check if the given ACPI resource object represents an extended address space
286 * resource and if that's the case, use the information in it to populate the
Jiang Liua49170b2015-02-02 10:42:58 +0800287 * generic resource object pointed to by @win.
Jiang Liu581c19f2015-02-02 10:42:55 +0800288 *
289 * Return:
Jiang Liua49170b2015-02-02 10:42:58 +0800290 * 1) false with win->res.flags setting to zero: not the expected resource type
291 * 2) false with IORESOURCE_DISABLED in win->res.flags: valid unassigned
292 * resource
Jiang Liu581c19f2015-02-02 10:42:55 +0800293 * 3) true: valid assigned resource
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100294 */
295bool acpi_dev_resource_ext_address_space(struct acpi_resource *ares,
Jiang Liua49170b2015-02-02 10:42:58 +0800296 struct resource_win *win)
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100297{
298 struct acpi_resource_extended_address64 *ext_addr;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100299
Jiang Liua49170b2015-02-02 10:42:58 +0800300 win->res.flags = 0;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100301 if (ares->type != ACPI_RESOURCE_TYPE_EXTENDED_ADDRESS64)
302 return false;
303
304 ext_addr = &ares->data.ext_address64;
305
Jiang Liua49170b2015-02-02 10:42:58 +0800306 return acpi_decode_space(win, (struct acpi_resource_address *)ext_addr,
Thomas Gleixnereb76d552015-02-02 10:42:51 +0800307 &ext_addr->address);
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100308}
309EXPORT_SYMBOL_GPL(acpi_dev_resource_ext_address_space);
310
311/**
312 * acpi_dev_irq_flags - Determine IRQ resource flags.
313 * @triggering: Triggering type as provided by ACPI.
314 * @polarity: Interrupt polarity as provided by ACPI.
315 * @shareable: Whether or not the interrupt is shareable.
316 */
317unsigned long acpi_dev_irq_flags(u8 triggering, u8 polarity, u8 shareable)
318{
319 unsigned long flags;
320
321 if (triggering == ACPI_LEVEL_SENSITIVE)
322 flags = polarity == ACPI_ACTIVE_LOW ?
323 IORESOURCE_IRQ_LOWLEVEL : IORESOURCE_IRQ_HIGHLEVEL;
324 else
325 flags = polarity == ACPI_ACTIVE_LOW ?
326 IORESOURCE_IRQ_LOWEDGE : IORESOURCE_IRQ_HIGHEDGE;
327
328 if (shareable == ACPI_SHARED)
329 flags |= IORESOURCE_IRQ_SHAREABLE;
330
331 return flags | IORESOURCE_IRQ;
332}
333EXPORT_SYMBOL_GPL(acpi_dev_irq_flags);
334
335static void acpi_dev_irqresource_disabled(struct resource *res, u32 gsi)
336{
337 res->start = gsi;
338 res->end = gsi;
Jiang Liuc78b6882015-02-02 10:42:56 +0800339 res->flags = IORESOURCE_IRQ | IORESOURCE_DISABLED | IORESOURCE_UNSET;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100340}
341
342static void acpi_dev_get_irqresource(struct resource *res, u32 gsi,
Mika Westerberg204ebc02013-05-20 15:41:45 +0000343 u8 triggering, u8 polarity, u8 shareable,
344 bool legacy)
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100345{
346 int irq, p, t;
347
348 if (!valid_IRQ(gsi)) {
349 acpi_dev_irqresource_disabled(res, gsi);
350 return;
351 }
352
353 /*
354 * In IO-APIC mode, use overrided attribute. Two reasons:
355 * 1. BIOS bug in DSDT
356 * 2. BIOS uses IO-APIC mode Interrupt Source Override
Mika Westerberg204ebc02013-05-20 15:41:45 +0000357 *
358 * We do this only if we are dealing with IRQ() or IRQNoFlags()
359 * resource (the legacy ISA resources). With modern ACPI 5 devices
360 * using extended IRQ descriptors we take the IRQ configuration
361 * from _CRS directly.
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100362 */
Mika Westerberg204ebc02013-05-20 15:41:45 +0000363 if (legacy && !acpi_get_override_irq(gsi, &t, &p)) {
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100364 u8 trig = t ? ACPI_LEVEL_SENSITIVE : ACPI_EDGE_SENSITIVE;
365 u8 pol = p ? ACPI_ACTIVE_LOW : ACPI_ACTIVE_HIGH;
366
367 if (triggering != trig || polarity != pol) {
368 pr_warning("ACPI: IRQ %d override to %s, %s\n", gsi,
Mika Westerberg204ebc02013-05-20 15:41:45 +0000369 t ? "level" : "edge", p ? "low" : "high");
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100370 triggering = trig;
371 polarity = pol;
372 }
373 }
374
375 res->flags = acpi_dev_irq_flags(triggering, polarity, shareable);
376 irq = acpi_register_gsi(NULL, gsi, triggering, polarity);
377 if (irq >= 0) {
378 res->start = irq;
379 res->end = irq;
380 } else {
381 acpi_dev_irqresource_disabled(res, gsi);
382 }
383}
384
385/**
386 * acpi_dev_resource_interrupt - Extract ACPI interrupt resource information.
387 * @ares: Input ACPI resource object.
388 * @index: Index into the array of GSIs represented by the resource.
389 * @res: Output generic resource object.
390 *
391 * Check if the given ACPI resource object represents an interrupt resource
392 * and @index does not exceed the resource's interrupt count (true is returned
393 * in that case regardless of the results of the other checks)). If that's the
394 * case, register the GSI corresponding to @index from the array of interrupts
395 * represented by the resource and populate the generic resource object pointed
396 * to by @res accordingly. If the registration of the GSI is not successful,
397 * IORESOURCE_DISABLED will be set it that object's flags.
Jiang Liu581c19f2015-02-02 10:42:55 +0800398 *
399 * Return:
400 * 1) false with res->flags setting to zero: not the expected resource type
401 * 2) false with IORESOURCE_DISABLED in res->flags: valid unassigned resource
402 * 3) true: valid assigned resource
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100403 */
404bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,
405 struct resource *res)
406{
407 struct acpi_resource_irq *irq;
408 struct acpi_resource_extended_irq *ext_irq;
409
410 switch (ares->type) {
411 case ACPI_RESOURCE_TYPE_IRQ:
412 /*
413 * Per spec, only one interrupt per descriptor is allowed in
414 * _CRS, but some firmware violates this, so parse them all.
415 */
416 irq = &ares->data.irq;
417 if (index >= irq->interrupt_count) {
418 acpi_dev_irqresource_disabled(res, 0);
419 return false;
420 }
421 acpi_dev_get_irqresource(res, irq->interrupts[index],
422 irq->triggering, irq->polarity,
Mika Westerberg204ebc02013-05-20 15:41:45 +0000423 irq->sharable, true);
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100424 break;
425 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
426 ext_irq = &ares->data.extended_irq;
427 if (index >= ext_irq->interrupt_count) {
428 acpi_dev_irqresource_disabled(res, 0);
429 return false;
430 }
431 acpi_dev_get_irqresource(res, ext_irq->interrupts[index],
432 ext_irq->triggering, ext_irq->polarity,
Mika Westerberg204ebc02013-05-20 15:41:45 +0000433 ext_irq->sharable, false);
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100434 break;
435 default:
Jiang Liu581c19f2015-02-02 10:42:55 +0800436 res->flags = 0;
Rafael J. Wysocki046d9ce2012-11-15 00:30:01 +0100437 return false;
438 }
439
440 return true;
441}
442EXPORT_SYMBOL_GPL(acpi_dev_resource_interrupt);
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100443
444/**
445 * acpi_dev_free_resource_list - Free resource from %acpi_dev_get_resources().
446 * @list: The head of the resource list to free.
447 */
448void acpi_dev_free_resource_list(struct list_head *list)
449{
Jiang Liu90e97822015-02-05 13:44:43 +0800450 resource_list_free(list);
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100451}
452EXPORT_SYMBOL_GPL(acpi_dev_free_resource_list);
453
454struct res_proc_context {
455 struct list_head *list;
456 int (*preproc)(struct acpi_resource *, void *);
457 void *preproc_data;
458 int count;
459 int error;
460};
461
Jiang Liua49170b2015-02-02 10:42:58 +0800462static acpi_status acpi_dev_new_resource_entry(struct resource_win *win,
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100463 struct res_proc_context *c)
464{
Jiang Liu90e97822015-02-05 13:44:43 +0800465 struct resource_entry *rentry;
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100466
Jiang Liu90e97822015-02-05 13:44:43 +0800467 rentry = resource_list_create_entry(NULL, 0);
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100468 if (!rentry) {
469 c->error = -ENOMEM;
470 return AE_NO_MEMORY;
471 }
Jiang Liu90e97822015-02-05 13:44:43 +0800472 *rentry->res = win->res;
Jiang Liu93286f42015-02-02 10:43:00 +0800473 rentry->offset = win->offset;
Jiang Liu90e97822015-02-05 13:44:43 +0800474 resource_list_add_tail(rentry, c->list);
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100475 c->count++;
476 return AE_OK;
477}
478
479static acpi_status acpi_dev_process_resource(struct acpi_resource *ares,
480 void *context)
481{
482 struct res_proc_context *c = context;
Jiang Liua49170b2015-02-02 10:42:58 +0800483 struct resource_win win;
484 struct resource *res = &win.res;
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100485 int i;
486
487 if (c->preproc) {
488 int ret;
489
490 ret = c->preproc(ares, c->preproc_data);
491 if (ret < 0) {
492 c->error = ret;
Rafael J. Wysocki8a667902012-11-16 21:55:48 +0100493 return AE_CTRL_TERMINATE;
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100494 } else if (ret > 0) {
495 return AE_OK;
496 }
497 }
498
Jiang Liua49170b2015-02-02 10:42:58 +0800499 memset(&win, 0, sizeof(win));
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100500
Jiang Liua49170b2015-02-02 10:42:58 +0800501 if (acpi_dev_resource_memory(ares, res)
502 || acpi_dev_resource_io(ares, res)
503 || acpi_dev_resource_address_space(ares, &win)
504 || acpi_dev_resource_ext_address_space(ares, &win))
505 return acpi_dev_new_resource_entry(&win, c);
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100506
Jiang Liua49170b2015-02-02 10:42:58 +0800507 for (i = 0; acpi_dev_resource_interrupt(ares, i, res); i++) {
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100508 acpi_status status;
509
Jiang Liua49170b2015-02-02 10:42:58 +0800510 status = acpi_dev_new_resource_entry(&win, c);
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100511 if (ACPI_FAILURE(status))
512 return status;
513 }
514
515 return AE_OK;
516}
517
518/**
519 * acpi_dev_get_resources - Get current resources of a device.
520 * @adev: ACPI device node to get the resources for.
521 * @list: Head of the resultant list of resources (must be empty).
522 * @preproc: The caller's preprocessing routine.
523 * @preproc_data: Pointer passed to the caller's preprocessing routine.
524 *
525 * Evaluate the _CRS method for the given device node and process its output by
526 * (1) executing the @preproc() rountine provided by the caller, passing the
527 * resource pointer and @preproc_data to it as arguments, for each ACPI resource
528 * returned and (2) converting all of the returned ACPI resources into struct
529 * resource objects if possible. If the return value of @preproc() in step (1)
530 * is different from 0, step (2) is not applied to the given ACPI resource and
531 * if that value is negative, the whole processing is aborted and that value is
532 * returned as the final error code.
533 *
534 * The resultant struct resource objects are put on the list pointed to by
Jiang Liu90e97822015-02-05 13:44:43 +0800535 * @list, that must be empty initially, as members of struct resource_entry
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100536 * objects. Callers of this routine should use %acpi_dev_free_resource_list() to
537 * free that list.
538 *
539 * The number of resources in the output list is returned on success, an error
540 * code reflecting the error condition is returned otherwise.
541 */
542int acpi_dev_get_resources(struct acpi_device *adev, struct list_head *list,
543 int (*preproc)(struct acpi_resource *, void *),
544 void *preproc_data)
545{
546 struct res_proc_context c;
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100547 acpi_status status;
548
549 if (!adev || !adev->handle || !list_empty(list))
550 return -EINVAL;
551
Jiang Liu952c63e2013-06-29 00:24:38 +0800552 if (!acpi_has_method(adev->handle, METHOD_NAME__CRS))
Rafael J. Wysocki8e345c92012-11-15 00:30:21 +0100553 return 0;
554
555 c.list = list;
556 c.preproc = preproc;
557 c.preproc_data = preproc_data;
558 c.count = 0;
559 c.error = 0;
560 status = acpi_walk_resources(adev->handle, METHOD_NAME__CRS,
561 acpi_dev_process_resource, &c);
562 if (ACPI_FAILURE(status)) {
563 acpi_dev_free_resource_list(list);
564 return c.error ? c.error : -EIO;
565 }
566
567 return c.count;
568}
569EXPORT_SYMBOL_GPL(acpi_dev_get_resources);
Jiang Liu62d11412015-02-02 10:43:01 +0800570
571/**
572 * acpi_dev_filter_resource_type - Filter ACPI resource according to resource
573 * types
574 * @ares: Input ACPI resource object.
575 * @types: Valid resource types of IORESOURCE_XXX
576 *
Jiang Liu2c62e842015-04-30 12:41:28 +0800577 * This is a helper function to support acpi_dev_get_resources(), which filters
Jiang Liu62d11412015-02-02 10:43:01 +0800578 * ACPI resource objects according to resource types.
579 */
580int acpi_dev_filter_resource_type(struct acpi_resource *ares,
581 unsigned long types)
582{
583 unsigned long type = 0;
584
585 switch (ares->type) {
586 case ACPI_RESOURCE_TYPE_MEMORY24:
587 case ACPI_RESOURCE_TYPE_MEMORY32:
588 case ACPI_RESOURCE_TYPE_FIXED_MEMORY32:
589 type = IORESOURCE_MEM;
590 break;
591 case ACPI_RESOURCE_TYPE_IO:
592 case ACPI_RESOURCE_TYPE_FIXED_IO:
593 type = IORESOURCE_IO;
594 break;
595 case ACPI_RESOURCE_TYPE_IRQ:
596 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
597 type = IORESOURCE_IRQ;
598 break;
599 case ACPI_RESOURCE_TYPE_DMA:
600 case ACPI_RESOURCE_TYPE_FIXED_DMA:
601 type = IORESOURCE_DMA;
602 break;
603 case ACPI_RESOURCE_TYPE_GENERIC_REGISTER:
604 type = IORESOURCE_REG;
605 break;
606 case ACPI_RESOURCE_TYPE_ADDRESS16:
607 case ACPI_RESOURCE_TYPE_ADDRESS32:
608 case ACPI_RESOURCE_TYPE_ADDRESS64:
609 case ACPI_RESOURCE_TYPE_EXTENDED_ADDRESS64:
610 if (ares->data.address.resource_type == ACPI_MEMORY_RANGE)
611 type = IORESOURCE_MEM;
612 else if (ares->data.address.resource_type == ACPI_IO_RANGE)
613 type = IORESOURCE_IO;
614 else if (ares->data.address.resource_type ==
615 ACPI_BUS_NUMBER_RANGE)
616 type = IORESOURCE_BUS;
617 break;
618 default:
619 break;
620 }
621
622 return (type & types) ? 0 : 1;
623}
624EXPORT_SYMBOL_GPL(acpi_dev_filter_resource_type);
Rafael J. Wysocki0f1b4142015-06-18 18:32:02 +0200625
626struct reserved_region {
627 struct list_head node;
628 u64 start;
629 u64 end;
630};
631
632static LIST_HEAD(reserved_io_regions);
633static LIST_HEAD(reserved_mem_regions);
634
635static int request_range(u64 start, u64 end, u8 space_id, unsigned long flags,
636 char *desc)
637{
638 unsigned int length = end - start + 1;
639 struct resource *res;
640
641 res = space_id == ACPI_ADR_SPACE_SYSTEM_IO ?
642 request_region(start, length, desc) :
643 request_mem_region(start, length, desc);
644 if (!res)
645 return -EIO;
646
647 res->flags &= ~flags;
648 return 0;
649}
650
651static int add_region_before(u64 start, u64 end, u8 space_id,
652 unsigned long flags, char *desc,
653 struct list_head *head)
654{
655 struct reserved_region *reg;
656 int error;
657
658 reg = kmalloc(sizeof(*reg), GFP_KERNEL);
659 if (!reg)
660 return -ENOMEM;
661
662 error = request_range(start, end, space_id, flags, desc);
663 if (error)
664 return error;
665
666 reg->start = start;
667 reg->end = end;
668 list_add_tail(&reg->node, head);
669 return 0;
670}
671
672/**
673 * acpi_reserve_region - Reserve an I/O or memory region as a system resource.
674 * @start: Starting address of the region.
675 * @length: Length of the region.
676 * @space_id: Identifier of address space to reserve the region from.
677 * @flags: Resource flags to clear for the region after requesting it.
678 * @desc: Region description (for messages).
679 *
680 * Reserve an I/O or memory region as a system resource to prevent others from
681 * using it. If the new region overlaps with one of the regions (in the given
682 * address space) already reserved by this routine, only the non-overlapping
683 * parts of it will be reserved.
684 *
685 * Returned is either 0 (success) or a negative error code indicating a resource
686 * reservation problem. It is the code of the first encountered error, but the
687 * routine doesn't abort until it has attempted to request all of the parts of
688 * the new region that don't overlap with other regions reserved previously.
689 *
690 * The resources requested by this routine are never released.
691 */
692int acpi_reserve_region(u64 start, unsigned int length, u8 space_id,
693 unsigned long flags, char *desc)
694{
695 struct list_head *regions;
696 struct reserved_region *reg;
697 u64 end = start + length - 1;
698 int ret = 0, error = 0;
699
700 if (space_id == ACPI_ADR_SPACE_SYSTEM_IO)
701 regions = &reserved_io_regions;
702 else if (space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
703 regions = &reserved_mem_regions;
704 else
705 return -EINVAL;
706
707 if (list_empty(regions))
708 return add_region_before(start, end, space_id, flags, desc, regions);
709
710 list_for_each_entry(reg, regions, node)
711 if (reg->start == end + 1) {
712 /* The new region can be prepended to this one. */
713 ret = request_range(start, end, space_id, flags, desc);
714 if (!ret)
715 reg->start = start;
716
717 return ret;
718 } else if (reg->start > end) {
719 /* No overlap. Add the new region here and get out. */
720 return add_region_before(start, end, space_id, flags,
721 desc, &reg->node);
722 } else if (reg->end == start - 1) {
723 goto combine;
724 } else if (reg->end >= start) {
725 goto overlap;
726 }
727
728 /* The new region goes after the last existing one. */
729 return add_region_before(start, end, space_id, flags, desc, regions);
730
731 overlap:
732 /*
733 * The new region overlaps an existing one.
734 *
735 * The head part of the new region immediately preceding the existing
736 * overlapping one can be combined with it right away.
737 */
738 if (reg->start > start) {
739 error = request_range(start, reg->start - 1, space_id, flags, desc);
740 if (error)
741 ret = error;
742 else
743 reg->start = start;
744 }
745
746 combine:
747 /*
748 * The new region is adjacent to an existing one. If it extends beyond
749 * that region all the way to the next one, it is possible to combine
750 * all three of them.
751 */
752 while (reg->end < end) {
753 struct reserved_region *next = NULL;
754 u64 a = reg->end + 1, b = end;
755
756 if (!list_is_last(&reg->node, regions)) {
757 next = list_next_entry(reg, node);
758 if (next->start <= end)
759 b = next->start - 1;
760 }
761 error = request_range(a, b, space_id, flags, desc);
762 if (!error) {
763 if (next && next->start == b + 1) {
764 reg->end = next->end;
765 list_del(&next->node);
766 kfree(next);
767 } else {
768 reg->end = end;
769 break;
770 }
771 } else if (next) {
772 if (!ret)
773 ret = error;
774
775 reg = next;
776 } else {
777 break;
778 }
779 }
780
781 return ret ? ret : error;
782}
783EXPORT_SYMBOL_GPL(acpi_reserve_region);