Deleted Added
full compact
acpiosxf.h (85756) acpiosxf.h (87031)
1
2/******************************************************************************
3 *
4 * Name: acpiosxf.h - All interfaces to the OS Services Layer (OSL). These
5 * interfaces must be implemented by OSL to interface the
6 * ACPI components to the host operating system.
7 *
8 *****************************************************************************/

--- 280 unchanged lines hidden (view full) ---

289 ACPI_IO_ADDRESS Address,
290 void *Value,
291 UINT32 Width);
292
293
294ACPI_STATUS
295AcpiOsWritePort (
296 ACPI_IO_ADDRESS Address,
1
2/******************************************************************************
3 *
4 * Name: acpiosxf.h - All interfaces to the OS Services Layer (OSL). These
5 * interfaces must be implemented by OSL to interface the
6 * ACPI components to the host operating system.
7 *
8 *****************************************************************************/

--- 280 unchanged lines hidden (view full) ---

289 ACPI_IO_ADDRESS Address,
290 void *Value,
291 UINT32 Width);
292
293
294ACPI_STATUS
295AcpiOsWritePort (
296 ACPI_IO_ADDRESS Address,
297 NATIVE_UINT Value,
297 ACPI_INTEGER Value,
298 UINT32 Width);
299
300
301/*
302 * Platform and hardware-independent physical memory interfaces
303 */
304
305ACPI_STATUS
306AcpiOsReadMemory (
307 ACPI_PHYSICAL_ADDRESS Address,
308 void *Value,
309 UINT32 Width);
310
311
312ACPI_STATUS
313AcpiOsWriteMemory (
314 ACPI_PHYSICAL_ADDRESS Address,
298 UINT32 Width);
299
300
301/*
302 * Platform and hardware-independent physical memory interfaces
303 */
304
305ACPI_STATUS
306AcpiOsReadMemory (
307 ACPI_PHYSICAL_ADDRESS Address,
308 void *Value,
309 UINT32 Width);
310
311
312ACPI_STATUS
313AcpiOsWriteMemory (
314 ACPI_PHYSICAL_ADDRESS Address,
315 NATIVE_UINT Value,
315 ACPI_INTEGER Value,
316 UINT32 Width);
317
318
319/*
320 * Platform and hardware-independent PCI configuration space access
321 */
322
323ACPI_STATUS
324AcpiOsReadPciConfiguration (
325 ACPI_PCI_ID *PciId,
326 UINT32 Register,
327 void *Value,
328 UINT32 Width);
329
330
331ACPI_STATUS
332AcpiOsWritePciConfiguration (
333 ACPI_PCI_ID *PciId,
334 UINT32 Register,
316 UINT32 Width);
317
318
319/*
320 * Platform and hardware-independent PCI configuration space access
321 */
322
323ACPI_STATUS
324AcpiOsReadPciConfiguration (
325 ACPI_PCI_ID *PciId,
326 UINT32 Register,
327 void *Value,
328 UINT32 Width);
329
330
331ACPI_STATUS
332AcpiOsWritePciConfiguration (
333 ACPI_PCI_ID *PciId,
334 UINT32 Register,
335 NATIVE_UINT Value,
335 ACPI_INTEGER Value,
336 UINT32 Width);
337
338
339/*
340 * Miscellaneous
341 */
342
343BOOLEAN

--- 56 unchanged lines hidden ---
336 UINT32 Width);
337
338
339/*
340 * Miscellaneous
341 */
342
343BOOLEAN

--- 56 unchanged lines hidden ---