Lines Matching defs:width
644 acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
652 if (width <= 8) {
654 } else if (width <= 16) {
656 } else if (width <= 32) {
667 acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
669 if (width <= 8) {
671 } else if (width <= 16) {
673 } else if (width <= 32) {
684 int acpi_os_read_iomem(void __iomem *virt_addr, u64 *value, u32 width)
687 switch (width) {
708 acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
711 unsigned int size = width / 8;
729 error = acpi_os_read_iomem(virt_addr, value, width);
741 acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
744 unsigned int size = width / 8;
757 switch (width) {
785 u64 *value, u32 width)
793 switch (width) {
817 u64 value, u32 width)
821 switch (width) {