1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44#include <acpi/acpi.h>
45#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
48
49#define _COMPONENT ACPI_EVENTS
50ACPI_MODULE_NAME("evrgnini")
51
52
53static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node);
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70acpi_status
71acpi_ev_system_memory_region_setup(acpi_handle handle,
72 u32 function,
73 void *handler_context, void **region_context)
74{
75 union acpi_operand_object *region_desc =
76 (union acpi_operand_object *)handle;
77 struct acpi_mem_space_context *local_region_context;
78
79 ACPI_FUNCTION_TRACE(ev_system_memory_region_setup);
80
81 if (function == ACPI_REGION_DEACTIVATE) {
82 if (*region_context) {
83 local_region_context =
84 (struct acpi_mem_space_context *)*region_context;
85
86
87
88 if (local_region_context->mapped_length) {
89 acpi_os_unmap_memory(local_region_context->
90 mapped_logical_address,
91 local_region_context->
92 mapped_length);
93 }
94 ACPI_FREE(local_region_context);
95 *region_context = NULL;
96 }
97 return_ACPI_STATUS(AE_OK);
98 }
99
100
101
102 local_region_context =
103 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_mem_space_context));
104 if (!(local_region_context)) {
105 return_ACPI_STATUS(AE_NO_MEMORY);
106 }
107
108
109
110 local_region_context->length = region_desc->region.length;
111 local_region_context->address = region_desc->region.address;
112
113 *region_context = local_region_context;
114 return_ACPI_STATUS(AE_OK);
115}
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132acpi_status
133acpi_ev_io_space_region_setup(acpi_handle handle,
134 u32 function,
135 void *handler_context, void **region_context)
136{
137 ACPI_FUNCTION_TRACE(ev_io_space_region_setup);
138
139 if (function == ACPI_REGION_DEACTIVATE) {
140 *region_context = NULL;
141 } else {
142 *region_context = handler_context;
143 }
144
145 return_ACPI_STATUS(AE_OK);
146}
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165acpi_status
166acpi_ev_pci_config_region_setup(acpi_handle handle,
167 u32 function,
168 void *handler_context, void **region_context)
169{
170 acpi_status status = AE_OK;
171 u64 pci_value;
172 struct acpi_pci_id *pci_id = *region_context;
173 union acpi_operand_object *handler_obj;
174 struct acpi_namespace_node *parent_node;
175 struct acpi_namespace_node *pci_root_node;
176 struct acpi_namespace_node *pci_device_node;
177 union acpi_operand_object *region_obj =
178 (union acpi_operand_object *)handle;
179
180 ACPI_FUNCTION_TRACE(ev_pci_config_region_setup);
181
182 handler_obj = region_obj->region.handler;
183 if (!handler_obj) {
184
185
186
187
188 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
189 "Attempting to init a region %p, with no handler\n",
190 region_obj));
191 return_ACPI_STATUS(AE_NOT_EXIST);
192 }
193
194 *region_context = NULL;
195 if (function == ACPI_REGION_DEACTIVATE) {
196 if (pci_id) {
197 ACPI_FREE(pci_id);
198 }
199 return_ACPI_STATUS(status);
200 }
201
202 parent_node = region_obj->region.node->parent;
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217 if (handler_obj->address_space.node == acpi_gbl_root_node) {
218
219
220
221 pci_root_node = parent_node;
222 while (pci_root_node != acpi_gbl_root_node) {
223
224
225
226 if (acpi_ev_is_pci_root_bridge(pci_root_node)) {
227
228
229
230 status = acpi_install_address_space_handler((acpi_handle) pci_root_node, ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
231 if (ACPI_FAILURE(status)) {
232 if (status == AE_SAME_HANDLER) {
233
234
235
236
237
238 status = AE_OK;
239 } else {
240 ACPI_EXCEPTION((AE_INFO, status,
241 "Could not install PciConfig handler "
242 "for Root Bridge %4.4s",
243 acpi_ut_get_node_name
244 (pci_root_node)));
245 }
246 }
247 break;
248 }
249
250 pci_root_node = pci_root_node->parent;
251 }
252
253
254 } else {
255 pci_root_node = handler_obj->address_space.node;
256 }
257
258
259
260
261
262 if (region_obj->region.flags & AOPOBJ_SETUP_COMPLETE) {
263 return_ACPI_STATUS(AE_OK);
264 }
265
266
267
268 pci_id = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pci_id));
269 if (!pci_id) {
270 return_ACPI_STATUS(AE_NO_MEMORY);
271 }
272
273
274
275
276
277
278
279
280 pci_device_node = region_obj->region.node;
281 while (pci_device_node && (pci_device_node->type != ACPI_TYPE_DEVICE)) {
282 pci_device_node = pci_device_node->parent;
283 }
284
285 if (!pci_device_node) {
286 ACPI_FREE(pci_id);
287 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
288 }
289
290
291
292
293
294 status = acpi_ut_evaluate_numeric_object(METHOD_NAME__ADR,
295 pci_device_node, &pci_value);
296
297
298
299
300
301 if (ACPI_SUCCESS(status)) {
302 pci_id->device = ACPI_HIWORD(ACPI_LODWORD(pci_value));
303 pci_id->function = ACPI_LOWORD(ACPI_LODWORD(pci_value));
304 }
305
306
307
308 status = acpi_ut_evaluate_numeric_object(METHOD_NAME__SEG,
309 pci_root_node, &pci_value);
310 if (ACPI_SUCCESS(status)) {
311 pci_id->segment = ACPI_LOWORD(pci_value);
312 }
313
314
315
316 status = acpi_ut_evaluate_numeric_object(METHOD_NAME__BBN,
317 pci_root_node, &pci_value);
318 if (ACPI_SUCCESS(status)) {
319 pci_id->bus = ACPI_LOWORD(pci_value);
320 }
321
322
323
324 status =
325 acpi_hw_derive_pci_id(pci_id, pci_root_node,
326 region_obj->region.node);
327 if (ACPI_FAILURE(status)) {
328 ACPI_FREE(pci_id);
329 return_ACPI_STATUS(status);
330 }
331
332 *region_context = pci_id;
333 return_ACPI_STATUS(AE_OK);
334}
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node)
350{
351 acpi_status status;
352 struct acpi_pnp_device_id *hid;
353 struct acpi_pnp_device_id_list *cid;
354 u32 i;
355 u8 match;
356
357
358
359 status = acpi_ut_execute_HID(node, &hid);
360 if (ACPI_FAILURE(status)) {
361 return (FALSE);
362 }
363
364 match = acpi_ut_is_pci_root_bridge(hid->string);
365 ACPI_FREE(hid);
366
367 if (match) {
368 return (TRUE);
369 }
370
371
372
373 status = acpi_ut_execute_CID(node, &cid);
374 if (ACPI_FAILURE(status)) {
375 return (FALSE);
376 }
377
378
379
380 for (i = 0; i < cid->count; i++) {
381 if (acpi_ut_is_pci_root_bridge(cid->ids[i].string)) {
382 ACPI_FREE(cid);
383 return (TRUE);
384 }
385 }
386
387 ACPI_FREE(cid);
388 return (FALSE);
389}
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408acpi_status
409acpi_ev_pci_bar_region_setup(acpi_handle handle,
410 u32 function,
411 void *handler_context, void **region_context)
412{
413 ACPI_FUNCTION_TRACE(ev_pci_bar_region_setup);
414
415 return_ACPI_STATUS(AE_OK);
416}
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435acpi_status
436acpi_ev_cmos_region_setup(acpi_handle handle,
437 u32 function,
438 void *handler_context, void **region_context)
439{
440 ACPI_FUNCTION_TRACE(ev_cmos_region_setup);
441
442 return_ACPI_STATUS(AE_OK);
443}
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460acpi_status
461acpi_ev_default_region_setup(acpi_handle handle,
462 u32 function,
463 void *handler_context, void **region_context)
464{
465 ACPI_FUNCTION_TRACE(ev_default_region_setup);
466
467 if (function == ACPI_REGION_DEACTIVATE) {
468 *region_context = NULL;
469 } else {
470 *region_context = handler_context;
471 }
472
473 return_ACPI_STATUS(AE_OK);
474}
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501acpi_status
502acpi_ev_initialize_region(union acpi_operand_object *region_obj,
503 u8 acpi_ns_locked)
504{
505 union acpi_operand_object *handler_obj;
506 union acpi_operand_object *obj_desc;
507 acpi_adr_space_type space_id;
508 struct acpi_namespace_node *node;
509 acpi_status status;
510 struct acpi_namespace_node *method_node;
511 acpi_name *reg_name_ptr = (acpi_name *) METHOD_NAME__REG;
512 union acpi_operand_object *region_obj2;
513
514 ACPI_FUNCTION_TRACE_U32(ev_initialize_region, acpi_ns_locked);
515
516 if (!region_obj) {
517 return_ACPI_STATUS(AE_BAD_PARAMETER);
518 }
519
520 if (region_obj->common.flags & AOPOBJ_OBJECT_INITIALIZED) {
521 return_ACPI_STATUS(AE_OK);
522 }
523
524 region_obj2 = acpi_ns_get_secondary_object(region_obj);
525 if (!region_obj2) {
526 return_ACPI_STATUS(AE_NOT_EXIST);
527 }
528
529 node = region_obj->region.node->parent;
530 space_id = region_obj->region.space_id;
531
532
533
534 region_obj->region.handler = NULL;
535 region_obj2->extra.method_REG = NULL;
536 region_obj->common.flags &= ~(AOPOBJ_SETUP_COMPLETE);
537 region_obj->common.flags |= AOPOBJ_OBJECT_INITIALIZED;
538
539
540
541 status =
542 acpi_ns_search_one_scope(*reg_name_ptr, node, ACPI_TYPE_METHOD,
543 &method_node);
544 if (ACPI_SUCCESS(status)) {
545
546
547
548
549
550 region_obj2->extra.method_REG = method_node;
551 }
552
553
554
555
556
557 while (node) {
558
559
560
561 handler_obj = NULL;
562 obj_desc = acpi_ns_get_attached_object(node);
563 if (obj_desc) {
564
565
566
567 switch (node->type) {
568 case ACPI_TYPE_DEVICE:
569
570 handler_obj = obj_desc->device.handler;
571 break;
572
573 case ACPI_TYPE_PROCESSOR:
574
575 handler_obj = obj_desc->processor.handler;
576 break;
577
578 case ACPI_TYPE_THERMAL:
579
580 handler_obj = obj_desc->thermal_zone.handler;
581 break;
582
583 case ACPI_TYPE_METHOD:
584
585
586
587
588
589
590
591 if (obj_desc->method.
592 info_flags & ACPI_METHOD_MODULE_LEVEL) {
593 handler_obj =
594 obj_desc->method.dispatch.handler;
595 }
596 break;
597
598 default:
599
600
601
602 break;
603 }
604
605 while (handler_obj) {
606
607
608
609 if (handler_obj->address_space.space_id ==
610 space_id) {
611
612
613
614 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
615 "Found handler %p for region %p in obj %p\n",
616 handler_obj,
617 region_obj,
618 obj_desc));
619
620 status =
621 acpi_ev_attach_region(handler_obj,
622 region_obj,
623 acpi_ns_locked);
624
625
626
627
628
629 if (acpi_ns_locked) {
630 status =
631 acpi_ut_release_mutex
632 (ACPI_MTX_NAMESPACE);
633 if (ACPI_FAILURE(status)) {
634 return_ACPI_STATUS
635 (status);
636 }
637 }
638
639 status =
640 acpi_ev_execute_reg_method
641 (region_obj, ACPI_REG_CONNECT);
642
643 if (acpi_ns_locked) {
644 status =
645 acpi_ut_acquire_mutex
646 (ACPI_MTX_NAMESPACE);
647 if (ACPI_FAILURE(status)) {
648 return_ACPI_STATUS
649 (status);
650 }
651 }
652
653 return_ACPI_STATUS(AE_OK);
654 }
655
656
657
658 handler_obj = handler_obj->address_space.next;
659 }
660 }
661
662
663
664 node = node->parent;
665 }
666
667
668
669 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
670 "No handler for RegionType %s(%X) (RegionObj %p)\n",
671 acpi_ut_get_region_name(space_id), space_id,
672 region_obj));
673
674 return_ACPI_STATUS(AE_NOT_EXIST);
675}
676