diff options
Diffstat (limited to 'drivers/firmware/qemu_fw_cfg.c')
-rw-r--r-- | drivers/firmware/qemu_fw_cfg.c | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/drivers/firmware/qemu_fw_cfg.c b/drivers/firmware/qemu_fw_cfg.c index fedbff55a7f3..815c4a5cae54 100644 --- a/drivers/firmware/qemu_fw_cfg.c +++ b/drivers/firmware/qemu_fw_cfg.c | |||
@@ -77,12 +77,28 @@ static inline u16 fw_cfg_sel_endianness(u16 key) | |||
77 | static inline void fw_cfg_read_blob(u16 key, | 77 | static inline void fw_cfg_read_blob(u16 key, |
78 | void *buf, loff_t pos, size_t count) | 78 | void *buf, loff_t pos, size_t count) |
79 | { | 79 | { |
80 | u32 glk; | ||
81 | acpi_status status; | ||
82 | |||
83 | /* If we have ACPI, ensure mutual exclusion against any potential | ||
84 | * device access by the firmware, e.g. via AML methods: | ||
85 | */ | ||
86 | status = acpi_acquire_global_lock(ACPI_WAIT_FOREVER, &glk); | ||
87 | if (ACPI_FAILURE(status) && status != AE_NOT_CONFIGURED) { | ||
88 | /* Should never get here */ | ||
89 | WARN(1, "fw_cfg_read_blob: Failed to lock ACPI!\n"); | ||
90 | memset(buf, 0, count); | ||
91 | return; | ||
92 | } | ||
93 | |||
80 | mutex_lock(&fw_cfg_dev_lock); | 94 | mutex_lock(&fw_cfg_dev_lock); |
81 | iowrite16(fw_cfg_sel_endianness(key), fw_cfg_reg_ctrl); | 95 | iowrite16(fw_cfg_sel_endianness(key), fw_cfg_reg_ctrl); |
82 | while (pos-- > 0) | 96 | while (pos-- > 0) |
83 | ioread8(fw_cfg_reg_data); | 97 | ioread8(fw_cfg_reg_data); |
84 | ioread8_rep(fw_cfg_reg_data, buf, count); | 98 | ioread8_rep(fw_cfg_reg_data, buf, count); |
85 | mutex_unlock(&fw_cfg_dev_lock); | 99 | mutex_unlock(&fw_cfg_dev_lock); |
100 | |||
101 | acpi_release_global_lock(glk); | ||
86 | } | 102 | } |
87 | 103 | ||
88 | /* clean up fw_cfg device i/o */ | 104 | /* clean up fw_cfg device i/o */ |
@@ -727,12 +743,18 @@ device_param_cb(mmio, &fw_cfg_cmdline_param_ops, NULL, S_IRUSR); | |||
727 | 743 | ||
728 | static int __init fw_cfg_sysfs_init(void) | 744 | static int __init fw_cfg_sysfs_init(void) |
729 | { | 745 | { |
746 | int ret; | ||
747 | |||
730 | /* create /sys/firmware/qemu_fw_cfg/ top level directory */ | 748 | /* create /sys/firmware/qemu_fw_cfg/ top level directory */ |
731 | fw_cfg_top_ko = kobject_create_and_add("qemu_fw_cfg", firmware_kobj); | 749 | fw_cfg_top_ko = kobject_create_and_add("qemu_fw_cfg", firmware_kobj); |
732 | if (!fw_cfg_top_ko) | 750 | if (!fw_cfg_top_ko) |
733 | return -ENOMEM; | 751 | return -ENOMEM; |
734 | 752 | ||
735 | return platform_driver_register(&fw_cfg_sysfs_driver); | 753 | ret = platform_driver_register(&fw_cfg_sysfs_driver); |
754 | if (ret) | ||
755 | fw_cfg_kobj_cleanup(fw_cfg_top_ko); | ||
756 | |||
757 | return ret; | ||
736 | } | 758 | } |
737 | 759 | ||
738 | static void __exit fw_cfg_sysfs_exit(void) | 760 | static void __exit fw_cfg_sysfs_exit(void) |