Subversion Repositories Kolibri OS

Rev

Rev 1498 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 10... Line 10...
10
/******************************************************************************
10
/******************************************************************************
11
 *
11
 *
12
 * 1. Copyright Notice
12
 * 1. Copyright Notice
13
 *
13
 *
14
 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
14
 * Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
15
 * All rights reserved.
15
 * All rights reserved.
16
 *
16
 *
17
 * 2. License
17
 * 2. License
18
 *
18
 *
19
 * 2.1. This is your license from Intel Corp. under its intellectual property
19
 * 2.1. This is your license from Intel Corp. under its intellectual property
Line 392... Line 392...
392
ACPI_STATUS
392
ACPI_STATUS
393
AcpiOsReadPciConfiguration (
393
AcpiOsReadPciConfiguration (
394
    ACPI_PCI_ID             *PciId,
394
    ACPI_PCI_ID             *PciId,
395
    UINT32                  Reg,
395
    UINT32                  Reg,
396
    void                    *Value,
396
    UINT64                  *Value,
397
    UINT32                  Width);
397
    UINT32                  Width);
398
 
398
 
Line 399... Line 399...
399
ACPI_STATUS
399
ACPI_STATUS
400
AcpiOsWritePciConfiguration (
400
AcpiOsWritePciConfiguration (
401
    ACPI_PCI_ID             *PciId,
401
    ACPI_PCI_ID             *PciId,
Line 404... Line 404...
404
    UINT32                  Width);
404
    UINT32                  Width);
405
 
405
 
Line 406... Line 406...
406
 
406
 
407
/*
-
 
408
 * Interim function needed for PCI IRQ routing
-
 
409
 */
-
 
410
void
-
 
411
AcpiOsDerivePciId(
-
 
412
    ACPI_HANDLE             Device,
-
 
413
    ACPI_HANDLE             Region,
-
 
414
    ACPI_PCI_ID             **PciId);
-
 
415
 
-
 
416
 
-
 
417
/*
407
/*
418
 * Miscellaneous
408
 * Miscellaneous
419
 */
-
 
420
ACPI_STATUS
-
 
421
AcpiOsValidateInterface (
-
 
422
    char                    *Interface);
-
 
423
 
409
 */
424
BOOLEAN
410
BOOLEAN
425
AcpiOsReadable (
411
AcpiOsReadable (
426
    void                    *Pointer,
412
    void                    *Pointer,
Line 461... Line 447...
461
 
447
 
462
/*
448
/*
463
 * Debug input
449
 * Debug input
464
 */
450
 */
465
UINT32
451
ACPI_STATUS
466
AcpiOsGetLine (
452
AcpiOsGetLine (
-
 
453
    char                    *Buffer,
-
 
454
    UINT32                  BufferLength,
Line 467... Line 455...
467
    char                    *Buffer);
455
    UINT32                  *BytesRead);
468
 
456
 
469
 
457