aslmapenter.c revision 1.1.1.2 1 1.1 christos /******************************************************************************
2 1.1 christos *
3 1.1 christos * Module Name: aslmapenter - Build resource descriptor/device maps
4 1.1 christos *
5 1.1 christos *****************************************************************************/
6 1.1 christos
7 1.1 christos /*
8 1.1.1.2 christos * Copyright (C) 2000 - 2015, Intel Corp.
9 1.1 christos * All rights reserved.
10 1.1 christos *
11 1.1 christos * Redistribution and use in source and binary forms, with or without
12 1.1 christos * modification, are permitted provided that the following conditions
13 1.1 christos * are met:
14 1.1 christos * 1. Redistributions of source code must retain the above copyright
15 1.1 christos * notice, this list of conditions, and the following disclaimer,
16 1.1 christos * without modification.
17 1.1 christos * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.1 christos * substantially similar to the "NO WARRANTY" disclaimer below
19 1.1 christos * ("Disclaimer") and any redistribution must be conditioned upon
20 1.1 christos * including a substantially similar Disclaimer requirement for further
21 1.1 christos * binary redistribution.
22 1.1 christos * 3. Neither the names of the above-listed copyright holders nor the names
23 1.1 christos * of any contributors may be used to endorse or promote products derived
24 1.1 christos * from this software without specific prior written permission.
25 1.1 christos *
26 1.1 christos * Alternatively, this software may be distributed under the terms of the
27 1.1 christos * GNU General Public License ("GPL") version 2 as published by the Free
28 1.1 christos * Software Foundation.
29 1.1 christos *
30 1.1 christos * NO WARRANTY
31 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.1 christos * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.1 christos * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 1.1 christos * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.1 christos * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1 christos * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.1 christos * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.1 christos * POSSIBILITY OF SUCH DAMAGES.
42 1.1 christos */
43 1.1 christos
44 1.1 christos #include "acpi.h"
45 1.1 christos #include "accommon.h"
46 1.1 christos #include "acapps.h"
47 1.1 christos #include "aslcompiler.h"
48 1.1 christos
49 1.1 christos /* This module used for application-level code only */
50 1.1 christos
51 1.1 christos #define _COMPONENT ACPI_COMPILER
52 1.1 christos ACPI_MODULE_NAME ("aslmapenter")
53 1.1 christos
54 1.1 christos /* Local prototypes */
55 1.1 christos
56 1.1 christos static ACPI_GPIO_INFO *
57 1.1 christos MpCreateGpioInfo (
58 1.1 christos UINT16 PinNumber,
59 1.1 christos char *DeviceName);
60 1.1 christos
61 1.1 christos static ACPI_SERIAL_INFO *
62 1.1 christos MpCreateSerialInfo (
63 1.1 christos char *DeviceName,
64 1.1 christos UINT16 Address);
65 1.1 christos
66 1.1 christos
67 1.1 christos /*******************************************************************************
68 1.1 christos *
69 1.1 christos * FUNCTION: MpSaveGpioInfo
70 1.1 christos *
71 1.1 christos * PARAMETERS: Resource - GPIO resource descriptor
72 1.1 christos * PinCount - From GPIO descriptor
73 1.1 christos * PinList - From GPIO descriptor
74 1.1 christos * DeviceName - The "ResourceSource" name
75 1.1 christos *
76 1.1 christos * RETURN: None
77 1.1 christos *
78 1.1 christos * DESCRIPTION: External Interface.
79 1.1 christos * Save GPIO resource descriptor information.
80 1.1 christos * Creates new GPIO info blocks, one for each pin defined by the
81 1.1 christos * GPIO descriptor.
82 1.1 christos *
83 1.1 christos ******************************************************************************/
84 1.1 christos
85 1.1 christos void
86 1.1 christos MpSaveGpioInfo (
87 1.1 christos ACPI_PARSE_OBJECT *Op,
88 1.1 christos AML_RESOURCE *Resource,
89 1.1 christos UINT32 PinCount,
90 1.1 christos UINT16 *PinList,
91 1.1 christos char *DeviceName)
92 1.1 christos {
93 1.1 christos ACPI_GPIO_INFO *Info;
94 1.1 christos UINT32 i;
95 1.1 christos
96 1.1 christos
97 1.1 christos /* Mapfile option enabled? */
98 1.1 christos
99 1.1 christos if (!Gbl_MapfileFlag)
100 1.1 christos {
101 1.1 christos return;
102 1.1 christos }
103 1.1 christos
104 1.1 christos /* Create an info block for each pin defined in the descriptor */
105 1.1 christos
106 1.1 christos for (i = 0; i < PinCount; i++)
107 1.1 christos {
108 1.1 christos Info = MpCreateGpioInfo (PinList[i], DeviceName);
109 1.1 christos
110 1.1 christos Info->Op = Op;
111 1.1 christos Info->DeviceName = DeviceName;
112 1.1 christos Info->PinCount = PinCount;
113 1.1 christos Info->PinIndex = i;
114 1.1 christos Info->PinNumber = PinList[i];
115 1.1 christos Info->Type = Resource->Gpio.ConnectionType;
116 1.1 christos Info->Direction = (UINT8) (Resource->Gpio.IntFlags & 0x0003); /* _IOR, for IO descriptor */
117 1.1 christos Info->Polarity = (UINT8) ((Resource->Gpio.IntFlags >> 1) & 0x0003); /* _POL, for INT descriptor */
118 1.1 christos }
119 1.1 christos }
120 1.1 christos
121 1.1 christos
122 1.1 christos /*******************************************************************************
123 1.1 christos *
124 1.1 christos * FUNCTION: MpSaveSerialInfo
125 1.1 christos *
126 1.1 christos * PARAMETERS: Resource - A Serial resource descriptor
127 1.1 christos * DeviceName - The "ResourceSource" name.
128 1.1 christos *
129 1.1 christos * RETURN: None
130 1.1 christos *
131 1.1 christos * DESCRIPTION: External Interface.
132 1.1 christos * Save serial resource descriptor information.
133 1.1 christos * Creates a new serial info block.
134 1.1 christos *
135 1.1 christos ******************************************************************************/
136 1.1 christos
137 1.1 christos void
138 1.1 christos MpSaveSerialInfo (
139 1.1 christos ACPI_PARSE_OBJECT *Op,
140 1.1 christos AML_RESOURCE *Resource,
141 1.1 christos char *DeviceName)
142 1.1 christos {
143 1.1 christos ACPI_SERIAL_INFO *Info;
144 1.1 christos UINT16 Address;
145 1.1 christos UINT32 Speed;
146 1.1 christos
147 1.1 christos
148 1.1 christos /* Mapfile option enabled? */
149 1.1 christos
150 1.1 christos if (!Gbl_MapfileFlag)
151 1.1 christos {
152 1.1 christos return;
153 1.1 christos }
154 1.1 christos
155 1.1 christos if (Resource->DescriptorType != ACPI_RESOURCE_NAME_SERIAL_BUS)
156 1.1 christos {
157 1.1 christos return;
158 1.1 christos }
159 1.1 christos
160 1.1 christos /* Extract address and speed from the resource descriptor */
161 1.1 christos
162 1.1 christos switch (Resource->CommonSerialBus.Type)
163 1.1 christos {
164 1.1 christos case AML_RESOURCE_I2C_SERIALBUSTYPE:
165 1.1 christos
166 1.1 christos Address = Resource->I2cSerialBus.SlaveAddress;
167 1.1 christos Speed = Resource->I2cSerialBus.ConnectionSpeed;
168 1.1 christos break;
169 1.1 christos
170 1.1 christos case AML_RESOURCE_SPI_SERIALBUSTYPE:
171 1.1 christos
172 1.1 christos Address = Resource->SpiSerialBus.DeviceSelection;
173 1.1 christos Speed = Resource->SpiSerialBus.ConnectionSpeed;
174 1.1 christos break;
175 1.1 christos
176 1.1 christos case AML_RESOURCE_UART_SERIALBUSTYPE:
177 1.1 christos
178 1.1 christos Address = 0;
179 1.1 christos Speed = Resource->UartSerialBus.DefaultBaudRate;
180 1.1 christos break;
181 1.1 christos
182 1.1 christos default: /* Invalid bus subtype */
183 1.1 christos return;
184 1.1 christos }
185 1.1 christos
186 1.1 christos Info = MpCreateSerialInfo (DeviceName, Address);
187 1.1 christos
188 1.1 christos Info->Op = Op;
189 1.1 christos Info->DeviceName = DeviceName;
190 1.1 christos Info->Resource = Resource;
191 1.1 christos Info->Address = Address;
192 1.1 christos Info->Speed = Speed;
193 1.1 christos }
194 1.1 christos
195 1.1 christos
196 1.1 christos /*******************************************************************************
197 1.1 christos *
198 1.1 christos * FUNCTION: MpCreateGpioInfo
199 1.1 christos *
200 1.1 christos * PARAMETERS: PinNumber - GPIO pin number
201 1.1 christos * DeviceName - The "ResourceSource" name
202 1.1 christos *
203 1.1 christos * RETURN: New GPIO info block.
204 1.1 christos *
205 1.1 christos * DESCRIPTION: Create a new GPIO info block and place it on the global list.
206 1.1 christos * The list is sorted by GPIO device names first, and pin numbers
207 1.1 christos * secondarily.
208 1.1 christos *
209 1.1 christos ******************************************************************************/
210 1.1 christos
211 1.1 christos static ACPI_GPIO_INFO *
212 1.1 christos MpCreateGpioInfo (
213 1.1 christos UINT16 PinNumber,
214 1.1 christos char *DeviceName)
215 1.1 christos {
216 1.1 christos ACPI_GPIO_INFO *Info;
217 1.1 christos ACPI_GPIO_INFO *NextGpio;
218 1.1 christos ACPI_GPIO_INFO *PrevGpio;
219 1.1.1.2 christos char *Buffer;
220 1.1 christos
221 1.1 christos
222 1.1 christos /*
223 1.1 christos * Allocate a new info block and insert it into the global GPIO list
224 1.1 christos * sorted by both source device name and then the pin number. There is
225 1.1 christos * one block per pin.
226 1.1 christos */
227 1.1.1.2 christos Buffer = UtStringCacheCalloc (sizeof (ACPI_GPIO_INFO));
228 1.1.1.2 christos Info = ACPI_CAST_PTR (ACPI_GPIO_INFO, Buffer);
229 1.1 christos
230 1.1 christos NextGpio = Gbl_GpioList;
231 1.1 christos PrevGpio = NULL;
232 1.1 christos if (!Gbl_GpioList)
233 1.1 christos {
234 1.1 christos Gbl_GpioList = Info;
235 1.1 christos Info->Next = NULL;
236 1.1 christos return (Info);
237 1.1 christos }
238 1.1 christos
239 1.1 christos /* Sort on source DeviceName first */
240 1.1 christos
241 1.1 christos while (NextGpio &&
242 1.1 christos (ACPI_STRCMP (DeviceName, NextGpio->DeviceName) > 0))
243 1.1 christos {
244 1.1 christos PrevGpio = NextGpio;
245 1.1 christos NextGpio = NextGpio->Next;
246 1.1 christos }
247 1.1 christos
248 1.1 christos /* Now sort on the PinNumber */
249 1.1 christos
250 1.1 christos while (NextGpio &&
251 1.1 christos (NextGpio->PinNumber < PinNumber) &&
252 1.1 christos !ACPI_STRCMP (DeviceName, NextGpio->DeviceName))
253 1.1 christos {
254 1.1 christos PrevGpio = NextGpio;
255 1.1 christos NextGpio = NextGpio->Next;
256 1.1 christos }
257 1.1 christos
258 1.1 christos /* Finish the list insertion */
259 1.1 christos
260 1.1 christos if (PrevGpio)
261 1.1 christos {
262 1.1 christos PrevGpio->Next = Info;
263 1.1 christos }
264 1.1 christos else
265 1.1 christos {
266 1.1 christos Gbl_GpioList = Info;
267 1.1 christos }
268 1.1 christos
269 1.1 christos Info->Next = NextGpio;
270 1.1 christos return (Info);
271 1.1 christos }
272 1.1 christos
273 1.1 christos
274 1.1 christos /*******************************************************************************
275 1.1 christos *
276 1.1 christos * FUNCTION: MpCreateSerialInfo
277 1.1 christos *
278 1.1 christos * PARAMETERS: DeviceName - The "ResourceSource" name.
279 1.1 christos * Address - Physical address for the device
280 1.1 christos *
281 1.1 christos * RETURN: New Serial info block.
282 1.1 christos *
283 1.1 christos * DESCRIPTION: Create a new Serial info block and place it on the global list.
284 1.1 christos * The list is sorted by Serial device names first, and addresses
285 1.1 christos * secondarily.
286 1.1 christos *
287 1.1 christos ******************************************************************************/
288 1.1 christos
289 1.1 christos static ACPI_SERIAL_INFO *
290 1.1 christos MpCreateSerialInfo (
291 1.1 christos char *DeviceName,
292 1.1 christos UINT16 Address)
293 1.1 christos {
294 1.1 christos ACPI_SERIAL_INFO *Info;
295 1.1 christos ACPI_SERIAL_INFO *NextSerial;
296 1.1 christos ACPI_SERIAL_INFO *PrevSerial;
297 1.1.1.2 christos char *Buffer;
298 1.1 christos
299 1.1 christos
300 1.1 christos /*
301 1.1 christos * Allocate a new info block and insert it into the global Serial list
302 1.1 christos * sorted by both source device name and then the address.
303 1.1 christos */
304 1.1.1.2 christos Buffer = UtStringCacheCalloc (sizeof (ACPI_SERIAL_INFO));
305 1.1.1.2 christos Info = ACPI_CAST_PTR (ACPI_SERIAL_INFO, Buffer);
306 1.1 christos
307 1.1 christos NextSerial = Gbl_SerialList;
308 1.1 christos PrevSerial = NULL;
309 1.1 christos if (!Gbl_SerialList)
310 1.1 christos {
311 1.1 christos Gbl_SerialList = Info;
312 1.1 christos Info->Next = NULL;
313 1.1 christos return (Info);
314 1.1 christos }
315 1.1 christos
316 1.1 christos /* Sort on source DeviceName */
317 1.1 christos
318 1.1 christos while (NextSerial &&
319 1.1 christos (ACPI_STRCMP (DeviceName, NextSerial->DeviceName) > 0))
320 1.1 christos {
321 1.1 christos PrevSerial = NextSerial;
322 1.1 christos NextSerial = NextSerial->Next;
323 1.1 christos }
324 1.1 christos
325 1.1 christos /* Now sort on the Address */
326 1.1 christos
327 1.1 christos while (NextSerial &&
328 1.1 christos (NextSerial->Address < Address) &&
329 1.1 christos !ACPI_STRCMP (DeviceName, NextSerial->DeviceName))
330 1.1 christos {
331 1.1 christos PrevSerial = NextSerial;
332 1.1 christos NextSerial = NextSerial->Next;
333 1.1 christos }
334 1.1 christos
335 1.1 christos /* Finish the list insertion */
336 1.1 christos
337 1.1 christos if (PrevSerial)
338 1.1 christos {
339 1.1 christos PrevSerial->Next = Info;
340 1.1 christos }
341 1.1 christos else
342 1.1 christos {
343 1.1 christos Gbl_SerialList = Info;
344 1.1 christos }
345 1.1 christos
346 1.1 christos Info->Next = NextSerial;
347 1.1 christos return (Info);
348 1.1 christos }
349