]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
07d4e9af | 2 | * support.c - standard functions for the use of pnp protocol drivers |
1da177e4 LT |
3 | * |
4 | * Copyright 2003 Adam Belay <[email protected]> | |
1f32ca31 BH |
5 | * Copyright (C) 2008 Hewlett-Packard Development Company, L.P. |
6 | * Bjorn Helgaas <[email protected]> | |
1da177e4 LT |
7 | */ |
8 | ||
1da177e4 LT |
9 | #include <linux/module.h> |
10 | #include <linux/ctype.h> | |
1da177e4 LT |
11 | #include <linux/pnp.h> |
12 | #include "base.h" | |
13 | ||
14 | /** | |
07d4e9af BH |
15 | * pnp_is_active - Determines if a device is active based on its current |
16 | * resources | |
1da177e4 | 17 | * @dev: pointer to the desired PnP device |
1da177e4 | 18 | */ |
9dd78466 | 19 | int pnp_is_active(struct pnp_dev *dev) |
1da177e4 | 20 | { |
aee3ad81 BH |
21 | /* |
22 | * I don't think this is very reliable because pnp_disable_dev() | |
23 | * only clears out auto-assigned resources. | |
24 | */ | |
1da177e4 LT |
25 | if (!pnp_port_start(dev, 0) && pnp_port_len(dev, 0) <= 1 && |
26 | !pnp_mem_start(dev, 0) && pnp_mem_len(dev, 0) <= 1 && | |
9dd78466 BH |
27 | pnp_irq(dev, 0) == -1 && pnp_dma(dev, 0) == -1) |
28 | return 0; | |
1da177e4 LT |
29 | else |
30 | return 1; | |
31 | } | |
32 | ||
1da177e4 | 33 | EXPORT_SYMBOL(pnp_is_active); |
25eb8461 BH |
34 | |
35 | /* | |
36 | * Functionally similar to acpi_ex_eisa_id_to_string(), but that's | |
37 | * buried in the ACPI CA, and we can't depend on it being present. | |
38 | */ | |
39 | void pnp_eisa_id_to_string(u32 id, char *str) | |
40 | { | |
41 | id = be32_to_cpu(id); | |
42 | ||
43 | /* | |
44 | * According to the specs, the first three characters are five-bit | |
45 | * compressed ASCII, and the left-over high order bit should be zero. | |
46 | * However, the Linux ISAPNP code historically used six bits for the | |
47 | * first character, and there seem to be IDs that depend on that, | |
48 | * e.g., "nEC8241" in the Linux 8250_pnp serial driver and the | |
49 | * FreeBSD sys/pc98/cbus/sio_cbus.c driver. | |
50 | */ | |
51 | str[0] = 'A' + ((id >> 26) & 0x3f) - 1; | |
52 | str[1] = 'A' + ((id >> 21) & 0x1f) - 1; | |
53 | str[2] = 'A' + ((id >> 16) & 0x1f) - 1; | |
3fc95772 HH |
54 | str[3] = hex_asc_hi(id >> 8); |
55 | str[4] = hex_asc_lo(id >> 8); | |
56 | str[5] = hex_asc_hi(id); | |
57 | str[6] = hex_asc_lo(id); | |
25eb8461 BH |
58 | str[7] = '\0'; |
59 | } | |
81b5c75f | 60 | |
9fdee4e0 BH |
61 | char *pnp_resource_type_name(struct resource *res) |
62 | { | |
63 | switch (pnp_resource_type(res)) { | |
64 | case IORESOURCE_IO: | |
65 | return "io"; | |
66 | case IORESOURCE_MEM: | |
67 | return "mem"; | |
68 | case IORESOURCE_IRQ: | |
69 | return "irq"; | |
70 | case IORESOURCE_DMA: | |
71 | return "dma"; | |
7e0e9c04 BH |
72 | case IORESOURCE_BUS: |
73 | return "bus"; | |
9fdee4e0 | 74 | } |
7e0e9c04 | 75 | return "unknown"; |
9fdee4e0 BH |
76 | } |
77 | ||
81b5c75f BH |
78 | void dbg_pnp_show_resources(struct pnp_dev *dev, char *desc) |
79 | { | |
aee3ad81 | 80 | struct pnp_resource *pnp_res; |
81b5c75f | 81 | |
9a007b37 | 82 | if (list_empty(&dev->resources)) |
2f53432c | 83 | pnp_dbg(&dev->dev, "%s: no current resources\n", desc); |
9a007b37 BH |
84 | else { |
85 | pnp_dbg(&dev->dev, "%s: current resources:\n", desc); | |
86 | list_for_each_entry(pnp_res, &dev->resources, list) | |
c7dabef8 | 87 | pnp_dbg(&dev->dev, "%pr\n", &pnp_res->res); |
81b5c75f | 88 | } |
81b5c75f | 89 | } |
1f32ca31 BH |
90 | |
91 | char *pnp_option_priority_name(struct pnp_option *option) | |
92 | { | |
93 | switch (pnp_option_priority(option)) { | |
94 | case PNP_RES_PRIORITY_PREFERRED: | |
95 | return "preferred"; | |
96 | case PNP_RES_PRIORITY_ACCEPTABLE: | |
97 | return "acceptable"; | |
98 | case PNP_RES_PRIORITY_FUNCTIONAL: | |
99 | return "functional"; | |
100 | } | |
101 | return "invalid"; | |
102 | } | |
103 | ||
104 | void dbg_pnp_show_option(struct pnp_dev *dev, struct pnp_option *option) | |
105 | { | |
1f32ca31 BH |
106 | char buf[128]; |
107 | int len = 0, i; | |
108 | struct pnp_port *port; | |
109 | struct pnp_mem *mem; | |
110 | struct pnp_irq *irq; | |
111 | struct pnp_dma *dma; | |
112 | ||
113 | if (pnp_option_is_dependent(option)) | |
ea44c1d6 BH |
114 | len += scnprintf(buf + len, sizeof(buf) - len, |
115 | " dependent set %d (%s) ", | |
116 | pnp_option_set(option), | |
117 | pnp_option_priority_name(option)); | |
1f32ca31 | 118 | else |
ea44c1d6 BH |
119 | len += scnprintf(buf + len, sizeof(buf) - len, |
120 | " independent "); | |
1f32ca31 BH |
121 | |
122 | switch (option->type) { | |
123 | case IORESOURCE_IO: | |
124 | port = &option->u.port; | |
ea44c1d6 BH |
125 | len += scnprintf(buf + len, sizeof(buf) - len, "io min %#llx " |
126 | "max %#llx align %lld size %lld flags %#x", | |
127 | (unsigned long long) port->min, | |
128 | (unsigned long long) port->max, | |
129 | (unsigned long long) port->align, | |
130 | (unsigned long long) port->size, port->flags); | |
1f32ca31 BH |
131 | break; |
132 | case IORESOURCE_MEM: | |
133 | mem = &option->u.mem; | |
ea44c1d6 BH |
134 | len += scnprintf(buf + len, sizeof(buf) - len, "mem min %#llx " |
135 | "max %#llx align %lld size %lld flags %#x", | |
136 | (unsigned long long) mem->min, | |
137 | (unsigned long long) mem->max, | |
138 | (unsigned long long) mem->align, | |
139 | (unsigned long long) mem->size, mem->flags); | |
1f32ca31 BH |
140 | break; |
141 | case IORESOURCE_IRQ: | |
142 | irq = &option->u.irq; | |
ea44c1d6 | 143 | len += scnprintf(buf + len, sizeof(buf) - len, "irq"); |
1f32ca31 | 144 | if (bitmap_empty(irq->map.bits, PNP_IRQ_NR)) |
ea44c1d6 BH |
145 | len += scnprintf(buf + len, sizeof(buf) - len, |
146 | " <none>"); | |
1f32ca31 BH |
147 | else { |
148 | for (i = 0; i < PNP_IRQ_NR; i++) | |
149 | if (test_bit(i, irq->map.bits)) | |
ea44c1d6 BH |
150 | len += scnprintf(buf + len, |
151 | sizeof(buf) - len, | |
152 | " %d", i); | |
1f32ca31 | 153 | } |
ea44c1d6 BH |
154 | len += scnprintf(buf + len, sizeof(buf) - len, " flags %#x", |
155 | irq->flags); | |
1f32ca31 | 156 | if (irq->flags & IORESOURCE_IRQ_OPTIONAL) |
ea44c1d6 BH |
157 | len += scnprintf(buf + len, sizeof(buf) - len, |
158 | " (optional)"); | |
1f32ca31 BH |
159 | break; |
160 | case IORESOURCE_DMA: | |
161 | dma = &option->u.dma; | |
ea44c1d6 | 162 | len += scnprintf(buf + len, sizeof(buf) - len, "dma"); |
1f32ca31 | 163 | if (!dma->map) |
ea44c1d6 BH |
164 | len += scnprintf(buf + len, sizeof(buf) - len, |
165 | " <none>"); | |
1f32ca31 BH |
166 | else { |
167 | for (i = 0; i < 8; i++) | |
168 | if (dma->map & (1 << i)) | |
ea44c1d6 BH |
169 | len += scnprintf(buf + len, |
170 | sizeof(buf) - len, | |
171 | " %d", i); | |
1f32ca31 | 172 | } |
ea44c1d6 BH |
173 | len += scnprintf(buf + len, sizeof(buf) - len, " (bitmask %#x) " |
174 | "flags %#x", dma->map, dma->flags); | |
1f32ca31 BH |
175 | break; |
176 | } | |
2f53432c | 177 | pnp_dbg(&dev->dev, "%s\n", buf); |
1f32ca31 | 178 | } |