diff options
63 files changed, 707 insertions, 424 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 2225bb91afcc..5aa1c500fe6d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -9728,7 +9728,6 @@ F: drivers/xen/*swiotlb* | |||
| 9728 | XFS FILESYSTEM | 9728 | XFS FILESYSTEM |
| 9729 | P: Silicon Graphics Inc | 9729 | P: Silicon Graphics Inc |
| 9730 | M: Dave Chinner <david@fromorbit.com> | 9730 | M: Dave Chinner <david@fromorbit.com> |
| 9731 | M: Ben Myers <bpm@sgi.com> | ||
| 9732 | M: xfs@oss.sgi.com | 9731 | M: xfs@oss.sgi.com |
| 9733 | L: xfs@oss.sgi.com | 9732 | L: xfs@oss.sgi.com |
| 9734 | W: http://oss.sgi.com/projects/xfs | 9733 | W: http://oss.sgi.com/projects/xfs |
diff --git a/arch/arm/boot/dts/testcases/tests.dtsi b/arch/arm/boot/dts/testcases/tests.dtsi deleted file mode 100644 index 3f123ecc9dd7..000000000000 --- a/arch/arm/boot/dts/testcases/tests.dtsi +++ /dev/null | |||
| @@ -1,2 +0,0 @@ | |||
| 1 | /include/ "tests-phandle.dtsi" | ||
| 2 | /include/ "tests-interrupts.dtsi" | ||
diff --git a/arch/arm/boot/dts/versatile-pb.dts b/arch/arm/boot/dts/versatile-pb.dts index f43907c40c93..65f657711323 100644 --- a/arch/arm/boot/dts/versatile-pb.dts +++ b/arch/arm/boot/dts/versatile-pb.dts | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /include/ "versatile-ab.dts" | 1 | #include <versatile-ab.dts> |
| 2 | 2 | ||
| 3 | / { | 3 | / { |
| 4 | model = "ARM Versatile PB"; | 4 | model = "ARM Versatile PB"; |
| @@ -47,4 +47,4 @@ | |||
| 47 | }; | 47 | }; |
| 48 | }; | 48 | }; |
| 49 | 49 | ||
| 50 | /include/ "testcases/tests.dtsi" | 50 | #include <testcases.dtsi> |
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index c51efdcd07a2..7d8b7e94b93b 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig | |||
| @@ -27,7 +27,7 @@ config SPARC | |||
| 27 | select RTC_DRV_M48T59 | 27 | select RTC_DRV_M48T59 |
| 28 | select HAVE_DMA_ATTRS | 28 | select HAVE_DMA_ATTRS |
| 29 | select HAVE_DMA_API_DEBUG | 29 | select HAVE_DMA_API_DEBUG |
| 30 | select HAVE_ARCH_JUMP_LABEL | 30 | select HAVE_ARCH_JUMP_LABEL if SPARC64 |
| 31 | select GENERIC_IRQ_SHOW | 31 | select GENERIC_IRQ_SHOW |
| 32 | select ARCH_WANT_IPC_PARSE_VERSION | 32 | select ARCH_WANT_IPC_PARSE_VERSION |
| 33 | select GENERIC_PCI_IOMAP | 33 | select GENERIC_PCI_IOMAP |
diff --git a/arch/sparc/mm/srmmu.c b/arch/sparc/mm/srmmu.c index 869023abe5a4..cfbe53c17b0d 100644 --- a/arch/sparc/mm/srmmu.c +++ b/arch/sparc/mm/srmmu.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/pagemap.h> | 14 | #include <linux/pagemap.h> |
| 15 | #include <linux/vmalloc.h> | 15 | #include <linux/vmalloc.h> |
| 16 | #include <linux/kdebug.h> | 16 | #include <linux/kdebug.h> |
| 17 | #include <linux/export.h> | ||
| 17 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
| 18 | #include <linux/init.h> | 19 | #include <linux/init.h> |
| 19 | #include <linux/log2.h> | 20 | #include <linux/log2.h> |
| @@ -62,6 +63,7 @@ extern unsigned long last_valid_pfn; | |||
| 62 | static pgd_t *srmmu_swapper_pg_dir; | 63 | static pgd_t *srmmu_swapper_pg_dir; |
| 63 | 64 | ||
| 64 | const struct sparc32_cachetlb_ops *sparc32_cachetlb_ops; | 65 | const struct sparc32_cachetlb_ops *sparc32_cachetlb_ops; |
| 66 | EXPORT_SYMBOL(sparc32_cachetlb_ops); | ||
| 65 | 67 | ||
| 66 | #ifdef CONFIG_SMP | 68 | #ifdef CONFIG_SMP |
| 67 | const struct sparc32_cachetlb_ops *local_ops; | 69 | const struct sparc32_cachetlb_ops *local_ops; |
diff --git a/arch/x86/kernel/cpu/perf_event.c b/arch/x86/kernel/cpu/perf_event.c index b88645191fe5..895604f2e916 100644 --- a/arch/x86/kernel/cpu/perf_event.c +++ b/arch/x86/kernel/cpu/perf_event.c | |||
| @@ -1521,6 +1521,8 @@ static int __init init_hw_perf_events(void) | |||
| 1521 | 1521 | ||
| 1522 | pr_cont("%s PMU driver.\n", x86_pmu.name); | 1522 | pr_cont("%s PMU driver.\n", x86_pmu.name); |
| 1523 | 1523 | ||
| 1524 | x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */ | ||
| 1525 | |||
| 1524 | for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next) | 1526 | for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next) |
| 1525 | quirk->func(); | 1527 | quirk->func(); |
| 1526 | 1528 | ||
| @@ -1534,7 +1536,6 @@ static int __init init_hw_perf_events(void) | |||
| 1534 | __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1, | 1536 | __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1, |
| 1535 | 0, x86_pmu.num_counters, 0, 0); | 1537 | 0, x86_pmu.num_counters, 0, 0); |
| 1536 | 1538 | ||
| 1537 | x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */ | ||
| 1538 | x86_pmu_format_group.attrs = x86_pmu.format_attrs; | 1539 | x86_pmu_format_group.attrs = x86_pmu.format_attrs; |
| 1539 | 1540 | ||
| 1540 | if (x86_pmu.event_attrs) | 1541 | if (x86_pmu.event_attrs) |
| @@ -1820,9 +1821,12 @@ static ssize_t set_attr_rdpmc(struct device *cdev, | |||
| 1820 | if (ret) | 1821 | if (ret) |
| 1821 | return ret; | 1822 | return ret; |
| 1822 | 1823 | ||
| 1824 | if (x86_pmu.attr_rdpmc_broken) | ||
| 1825 | return -ENOTSUPP; | ||
| 1826 | |||
| 1823 | if (!!val != !!x86_pmu.attr_rdpmc) { | 1827 | if (!!val != !!x86_pmu.attr_rdpmc) { |
| 1824 | x86_pmu.attr_rdpmc = !!val; | 1828 | x86_pmu.attr_rdpmc = !!val; |
| 1825 | smp_call_function(change_rdpmc, (void *)val, 1); | 1829 | on_each_cpu(change_rdpmc, (void *)val, 1); |
| 1826 | } | 1830 | } |
| 1827 | 1831 | ||
| 1828 | return count; | 1832 | return count; |
diff --git a/arch/x86/kernel/cpu/perf_event.h b/arch/x86/kernel/cpu/perf_event.h index c1a861829d81..4972c244d0bc 100644 --- a/arch/x86/kernel/cpu/perf_event.h +++ b/arch/x86/kernel/cpu/perf_event.h | |||
| @@ -409,6 +409,7 @@ struct x86_pmu { | |||
| 409 | /* | 409 | /* |
| 410 | * sysfs attrs | 410 | * sysfs attrs |
| 411 | */ | 411 | */ |
| 412 | int attr_rdpmc_broken; | ||
| 412 | int attr_rdpmc; | 413 | int attr_rdpmc; |
| 413 | struct attribute **format_attrs; | 414 | struct attribute **format_attrs; |
| 414 | struct attribute **event_attrs; | 415 | struct attribute **event_attrs; |
diff --git a/arch/x86/kernel/cpu/perf_event_intel.c b/arch/x86/kernel/cpu/perf_event_intel.c index 0fa4f242f050..aa333d966886 100644 --- a/arch/x86/kernel/cpu/perf_event_intel.c +++ b/arch/x86/kernel/cpu/perf_event_intel.c | |||
| @@ -1361,10 +1361,8 @@ static int intel_pmu_handle_irq(struct pt_regs *regs) | |||
| 1361 | intel_pmu_disable_all(); | 1361 | intel_pmu_disable_all(); |
| 1362 | handled = intel_pmu_drain_bts_buffer(); | 1362 | handled = intel_pmu_drain_bts_buffer(); |
| 1363 | status = intel_pmu_get_status(); | 1363 | status = intel_pmu_get_status(); |
| 1364 | if (!status) { | 1364 | if (!status) |
| 1365 | intel_pmu_enable_all(0); | 1365 | goto done; |
| 1366 | return handled; | ||
| 1367 | } | ||
| 1368 | 1366 | ||
| 1369 | loops = 0; | 1367 | loops = 0; |
| 1370 | again: | 1368 | again: |
| @@ -2310,10 +2308,7 @@ __init int intel_pmu_init(void) | |||
| 2310 | if (version > 1) | 2308 | if (version > 1) |
| 2311 | x86_pmu.num_counters_fixed = max((int)edx.split.num_counters_fixed, 3); | 2309 | x86_pmu.num_counters_fixed = max((int)edx.split.num_counters_fixed, 3); |
| 2312 | 2310 | ||
| 2313 | /* | 2311 | if (boot_cpu_has(X86_FEATURE_PDCM)) { |
| 2314 | * v2 and above have a perf capabilities MSR | ||
| 2315 | */ | ||
| 2316 | if (version > 1) { | ||
| 2317 | u64 capabilities; | 2312 | u64 capabilities; |
| 2318 | 2313 | ||
| 2319 | rdmsrl(MSR_IA32_PERF_CAPABILITIES, capabilities); | 2314 | rdmsrl(MSR_IA32_PERF_CAPABILITIES, capabilities); |
diff --git a/arch/x86/kernel/cpu/perf_event_intel_uncore.c b/arch/x86/kernel/cpu/perf_event_intel_uncore.c index 29c248799ced..c88f7f4b03ee 100644 --- a/arch/x86/kernel/cpu/perf_event_intel_uncore.c +++ b/arch/x86/kernel/cpu/perf_event_intel_uncore.c | |||
| @@ -501,8 +501,11 @@ static struct extra_reg snbep_uncore_cbox_extra_regs[] = { | |||
| 501 | SNBEP_CBO_EVENT_EXTRA_REG(SNBEP_CBO_PMON_CTL_TID_EN, | 501 | SNBEP_CBO_EVENT_EXTRA_REG(SNBEP_CBO_PMON_CTL_TID_EN, |
| 502 | SNBEP_CBO_PMON_CTL_TID_EN, 0x1), | 502 | SNBEP_CBO_PMON_CTL_TID_EN, 0x1), |
| 503 | SNBEP_CBO_EVENT_EXTRA_REG(0x0334, 0xffff, 0x4), | 503 | SNBEP_CBO_EVENT_EXTRA_REG(0x0334, 0xffff, 0x4), |
| 504 | SNBEP_CBO_EVENT_EXTRA_REG(0x4334, 0xffff, 0x6), | ||
| 504 | SNBEP_CBO_EVENT_EXTRA_REG(0x0534, 0xffff, 0x4), | 505 | SNBEP_CBO_EVENT_EXTRA_REG(0x0534, 0xffff, 0x4), |
| 506 | SNBEP_CBO_EVENT_EXTRA_REG(0x4534, 0xffff, 0x6), | ||
| 505 | SNBEP_CBO_EVENT_EXTRA_REG(0x0934, 0xffff, 0x4), | 507 | SNBEP_CBO_EVENT_EXTRA_REG(0x0934, 0xffff, 0x4), |
| 508 | SNBEP_CBO_EVENT_EXTRA_REG(0x4934, 0xffff, 0x6), | ||
| 506 | SNBEP_CBO_EVENT_EXTRA_REG(0x4134, 0xffff, 0x6), | 509 | SNBEP_CBO_EVENT_EXTRA_REG(0x4134, 0xffff, 0x6), |
| 507 | SNBEP_CBO_EVENT_EXTRA_REG(0x0135, 0xffff, 0x8), | 510 | SNBEP_CBO_EVENT_EXTRA_REG(0x0135, 0xffff, 0x8), |
| 508 | SNBEP_CBO_EVENT_EXTRA_REG(0x0335, 0xffff, 0x8), | 511 | SNBEP_CBO_EVENT_EXTRA_REG(0x0335, 0xffff, 0x8), |
| @@ -1178,10 +1181,15 @@ static struct extra_reg ivt_uncore_cbox_extra_regs[] = { | |||
| 1178 | SNBEP_CBO_EVENT_EXTRA_REG(SNBEP_CBO_PMON_CTL_TID_EN, | 1181 | SNBEP_CBO_EVENT_EXTRA_REG(SNBEP_CBO_PMON_CTL_TID_EN, |
| 1179 | SNBEP_CBO_PMON_CTL_TID_EN, 0x1), | 1182 | SNBEP_CBO_PMON_CTL_TID_EN, 0x1), |
| 1180 | SNBEP_CBO_EVENT_EXTRA_REG(0x1031, 0x10ff, 0x2), | 1183 | SNBEP_CBO_EVENT_EXTRA_REG(0x1031, 0x10ff, 0x2), |
| 1184 | SNBEP_CBO_EVENT_EXTRA_REG(0x1134, 0xffff, 0x4), | ||
| 1185 | SNBEP_CBO_EVENT_EXTRA_REG(0x4134, 0xffff, 0xc), | ||
| 1186 | SNBEP_CBO_EVENT_EXTRA_REG(0x5134, 0xffff, 0xc), | ||
| 1181 | SNBEP_CBO_EVENT_EXTRA_REG(0x0334, 0xffff, 0x4), | 1187 | SNBEP_CBO_EVENT_EXTRA_REG(0x0334, 0xffff, 0x4), |
| 1188 | SNBEP_CBO_EVENT_EXTRA_REG(0x4334, 0xffff, 0xc), | ||
| 1182 | SNBEP_CBO_EVENT_EXTRA_REG(0x0534, 0xffff, 0x4), | 1189 | SNBEP_CBO_EVENT_EXTRA_REG(0x0534, 0xffff, 0x4), |
| 1190 | SNBEP_CBO_EVENT_EXTRA_REG(0x4534, 0xffff, 0xc), | ||
| 1183 | SNBEP_CBO_EVENT_EXTRA_REG(0x0934, 0xffff, 0x4), | 1191 | SNBEP_CBO_EVENT_EXTRA_REG(0x0934, 0xffff, 0x4), |
| 1184 | SNBEP_CBO_EVENT_EXTRA_REG(0x4134, 0xffff, 0xc), | 1192 | SNBEP_CBO_EVENT_EXTRA_REG(0x4934, 0xffff, 0xc), |
| 1185 | SNBEP_CBO_EVENT_EXTRA_REG(0x0135, 0xffff, 0x10), | 1193 | SNBEP_CBO_EVENT_EXTRA_REG(0x0135, 0xffff, 0x10), |
| 1186 | SNBEP_CBO_EVENT_EXTRA_REG(0x0335, 0xffff, 0x10), | 1194 | SNBEP_CBO_EVENT_EXTRA_REG(0x0335, 0xffff, 0x10), |
| 1187 | SNBEP_CBO_EVENT_EXTRA_REG(0x2135, 0xffff, 0x10), | 1195 | SNBEP_CBO_EVENT_EXTRA_REG(0x2135, 0xffff, 0x10), |
diff --git a/arch/x86/kernel/cpu/perf_event_p6.c b/arch/x86/kernel/cpu/perf_event_p6.c index b1e2fe115323..7c1a0c07b607 100644 --- a/arch/x86/kernel/cpu/perf_event_p6.c +++ b/arch/x86/kernel/cpu/perf_event_p6.c | |||
| @@ -231,31 +231,49 @@ static __initconst const struct x86_pmu p6_pmu = { | |||
| 231 | 231 | ||
| 232 | }; | 232 | }; |
| 233 | 233 | ||
| 234 | static __init void p6_pmu_rdpmc_quirk(void) | ||
| 235 | { | ||
| 236 | if (boot_cpu_data.x86_mask < 9) { | ||
| 237 | /* | ||
| 238 | * PPro erratum 26; fixed in stepping 9 and above. | ||
| 239 | */ | ||
| 240 | pr_warn("Userspace RDPMC support disabled due to a CPU erratum\n"); | ||
| 241 | x86_pmu.attr_rdpmc_broken = 1; | ||
| 242 | x86_pmu.attr_rdpmc = 0; | ||
| 243 | } | ||
| 244 | } | ||
| 245 | |||
| 234 | __init int p6_pmu_init(void) | 246 | __init int p6_pmu_init(void) |
| 235 | { | 247 | { |
| 248 | x86_pmu = p6_pmu; | ||
| 249 | |||
| 236 | switch (boot_cpu_data.x86_model) { | 250 | switch (boot_cpu_data.x86_model) { |
| 237 | case 1: | 251 | case 1: /* Pentium Pro */ |
| 238 | case 3: /* Pentium Pro */ | 252 | x86_add_quirk(p6_pmu_rdpmc_quirk); |
| 239 | case 5: | 253 | break; |
| 240 | case 6: /* Pentium II */ | 254 | |
| 241 | case 7: | 255 | case 3: /* Pentium II - Klamath */ |
| 242 | case 8: | 256 | case 5: /* Pentium II - Deschutes */ |
| 243 | case 11: /* Pentium III */ | 257 | case 6: /* Pentium II - Mendocino */ |
| 244 | case 9: | ||
| 245 | case 13: | ||
| 246 | /* Pentium M */ | ||
| 247 | break; | 258 | break; |
| 259 | |||
| 260 | case 7: /* Pentium III - Katmai */ | ||
| 261 | case 8: /* Pentium III - Coppermine */ | ||
| 262 | case 10: /* Pentium III Xeon */ | ||
| 263 | case 11: /* Pentium III - Tualatin */ | ||
| 264 | break; | ||
| 265 | |||
| 266 | case 9: /* Pentium M - Banias */ | ||
| 267 | case 13: /* Pentium M - Dothan */ | ||
| 268 | break; | ||
| 269 | |||
| 248 | default: | 270 | default: |
| 249 | pr_cont("unsupported p6 CPU model %d ", | 271 | pr_cont("unsupported p6 CPU model %d ", boot_cpu_data.x86_model); |
| 250 | boot_cpu_data.x86_model); | ||
| 251 | return -ENODEV; | 272 | return -ENODEV; |
| 252 | } | 273 | } |
| 253 | 274 | ||
| 254 | x86_pmu = p6_pmu; | ||
| 255 | |||
| 256 | memcpy(hw_cache_event_ids, p6_hw_cache_event_ids, | 275 | memcpy(hw_cache_event_ids, p6_hw_cache_event_ids, |
| 257 | sizeof(hw_cache_event_ids)); | 276 | sizeof(hw_cache_event_ids)); |
| 258 | 277 | ||
| 259 | |||
| 260 | return 0; | 278 | return 0; |
| 261 | } | 279 | } |
diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c index e7515aa43d6b..6f190bc2b8b7 100644 --- a/drivers/acpi/ac.c +++ b/drivers/acpi/ac.c | |||
| @@ -243,6 +243,8 @@ static int acpi_ac_resume(struct device *dev) | |||
| 243 | kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE); | 243 | kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE); |
| 244 | return 0; | 244 | return 0; |
| 245 | } | 245 | } |
| 246 | #else | ||
| 247 | #define acpi_ac_resume NULL | ||
| 246 | #endif | 248 | #endif |
| 247 | static SIMPLE_DEV_PM_OPS(acpi_ac_pm_ops, NULL, acpi_ac_resume); | 249 | static SIMPLE_DEV_PM_OPS(acpi_ac_pm_ops, NULL, acpi_ac_resume); |
| 248 | 250 | ||
diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c index 018a42883706..797a6938d051 100644 --- a/drivers/acpi/battery.c +++ b/drivers/acpi/battery.c | |||
| @@ -841,6 +841,8 @@ static int acpi_battery_resume(struct device *dev) | |||
| 841 | acpi_battery_update(battery); | 841 | acpi_battery_update(battery); |
| 842 | return 0; | 842 | return 0; |
| 843 | } | 843 | } |
| 844 | #else | ||
| 845 | #define acpi_battery_resume NULL | ||
| 844 | #endif | 846 | #endif |
| 845 | 847 | ||
| 846 | static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume); | 848 | static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume); |
diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c index 10e4964d051a..afec4526c48a 100644 --- a/drivers/acpi/blacklist.c +++ b/drivers/acpi/blacklist.c | |||
| @@ -260,14 +260,6 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
| 260 | }, | 260 | }, |
| 261 | { | 261 | { |
| 262 | .callback = dmi_disable_osi_win8, | 262 | .callback = dmi_disable_osi_win8, |
| 263 | .ident = "Dell Inspiron 15R SE", | ||
| 264 | .matches = { | ||
| 265 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 266 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7520"), | ||
| 267 | }, | ||
| 268 | }, | ||
| 269 | { | ||
| 270 | .callback = dmi_disable_osi_win8, | ||
| 271 | .ident = "ThinkPad Edge E530", | 263 | .ident = "ThinkPad Edge E530", |
| 272 | .matches = { | 264 | .matches = { |
| 273 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | 265 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), |
| @@ -322,56 +314,6 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
| 322 | DMI_MATCH(DMI_PRODUCT_VERSION, "2349D15"), | 314 | DMI_MATCH(DMI_PRODUCT_VERSION, "2349D15"), |
| 323 | }, | 315 | }, |
| 324 | }, | 316 | }, |
| 325 | { | ||
| 326 | .callback = dmi_disable_osi_win8, | ||
| 327 | .ident = "HP ProBook 2013 models", | ||
| 328 | .matches = { | ||
| 329 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 330 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook "), | ||
| 331 | DMI_MATCH(DMI_PRODUCT_NAME, " G1"), | ||
| 332 | }, | ||
| 333 | }, | ||
| 334 | { | ||
| 335 | .callback = dmi_disable_osi_win8, | ||
| 336 | .ident = "HP EliteBook 2013 models", | ||
| 337 | .matches = { | ||
| 338 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 339 | DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook "), | ||
| 340 | DMI_MATCH(DMI_PRODUCT_NAME, " G1"), | ||
| 341 | }, | ||
| 342 | }, | ||
| 343 | { | ||
| 344 | .callback = dmi_disable_osi_win8, | ||
| 345 | .ident = "HP ZBook 14", | ||
| 346 | .matches = { | ||
| 347 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 348 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 14"), | ||
| 349 | }, | ||
| 350 | }, | ||
| 351 | { | ||
| 352 | .callback = dmi_disable_osi_win8, | ||
| 353 | .ident = "HP ZBook 15", | ||
| 354 | .matches = { | ||
| 355 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 356 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 15"), | ||
| 357 | }, | ||
| 358 | }, | ||
| 359 | { | ||
| 360 | .callback = dmi_disable_osi_win8, | ||
| 361 | .ident = "HP ZBook 17", | ||
| 362 | .matches = { | ||
| 363 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 364 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 17"), | ||
| 365 | }, | ||
| 366 | }, | ||
| 367 | { | ||
| 368 | .callback = dmi_disable_osi_win8, | ||
| 369 | .ident = "HP EliteBook 8780w", | ||
| 370 | .matches = { | ||
| 371 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 372 | DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook 8780w"), | ||
| 373 | }, | ||
| 374 | }, | ||
| 375 | 317 | ||
| 376 | /* | 318 | /* |
| 377 | * BIOS invocation of _OSI(Linux) is almost always a BIOS bug. | 319 | * BIOS invocation of _OSI(Linux) is almost always a BIOS bug. |
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c index 11c11f6b8fa1..714e957a871a 100644 --- a/drivers/acpi/button.c +++ b/drivers/acpi/button.c | |||
| @@ -80,6 +80,8 @@ static void acpi_button_notify(struct acpi_device *device, u32 event); | |||
| 80 | 80 | ||
| 81 | #ifdef CONFIG_PM_SLEEP | 81 | #ifdef CONFIG_PM_SLEEP |
| 82 | static int acpi_button_resume(struct device *dev); | 82 | static int acpi_button_resume(struct device *dev); |
| 83 | #else | ||
| 84 | #define acpi_button_resume NULL | ||
| 83 | #endif | 85 | #endif |
| 84 | static SIMPLE_DEV_PM_OPS(acpi_button_pm, NULL, acpi_button_resume); | 86 | static SIMPLE_DEV_PM_OPS(acpi_button_pm, NULL, acpi_button_resume); |
| 85 | 87 | ||
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c index e9b3081c4fe9..5bfd769fc91f 100644 --- a/drivers/acpi/dock.c +++ b/drivers/acpi/dock.c | |||
| @@ -713,13 +713,11 @@ static acpi_status __init find_dock_devices(acpi_handle handle, u32 lvl, | |||
| 713 | static ssize_t show_docked(struct device *dev, | 713 | static ssize_t show_docked(struct device *dev, |
| 714 | struct device_attribute *attr, char *buf) | 714 | struct device_attribute *attr, char *buf) |
| 715 | { | 715 | { |
| 716 | struct acpi_device *tmp; | ||
| 717 | |||
| 718 | struct dock_station *dock_station = dev->platform_data; | 716 | struct dock_station *dock_station = dev->platform_data; |
| 717 | struct acpi_device *adev = NULL; | ||
| 719 | 718 | ||
| 720 | if (!acpi_bus_get_device(dock_station->handle, &tmp)) | 719 | acpi_bus_get_device(dock_station->handle, &adev); |
| 721 | return snprintf(buf, PAGE_SIZE, "1\n"); | 720 | return snprintf(buf, PAGE_SIZE, "%u\n", acpi_device_enumerated(adev)); |
| 722 | return snprintf(buf, PAGE_SIZE, "0\n"); | ||
| 723 | } | 721 | } |
| 724 | static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL); | 722 | static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL); |
| 725 | 723 | ||
diff --git a/drivers/acpi/fan.c b/drivers/acpi/fan.c index 1fb62900f32a..09e423f3d8ad 100644 --- a/drivers/acpi/fan.c +++ b/drivers/acpi/fan.c | |||
| @@ -55,6 +55,9 @@ MODULE_DEVICE_TABLE(acpi, fan_device_ids); | |||
| 55 | #ifdef CONFIG_PM_SLEEP | 55 | #ifdef CONFIG_PM_SLEEP |
| 56 | static int acpi_fan_suspend(struct device *dev); | 56 | static int acpi_fan_suspend(struct device *dev); |
| 57 | static int acpi_fan_resume(struct device *dev); | 57 | static int acpi_fan_resume(struct device *dev); |
| 58 | #else | ||
| 59 | #define acpi_fan_suspend NULL | ||
| 60 | #define acpi_fan_resume NULL | ||
| 58 | #endif | 61 | #endif |
| 59 | static SIMPLE_DEV_PM_OPS(acpi_fan_pm, acpi_fan_suspend, acpi_fan_resume); | 62 | static SIMPLE_DEV_PM_OPS(acpi_fan_pm, acpi_fan_suspend, acpi_fan_resume); |
| 60 | 63 | ||
diff --git a/drivers/acpi/pci_irq.c b/drivers/acpi/pci_irq.c index 52d45ea2bc4f..361b40c10c3f 100644 --- a/drivers/acpi/pci_irq.c +++ b/drivers/acpi/pci_irq.c | |||
| @@ -430,6 +430,7 @@ int acpi_pci_irq_enable(struct pci_dev *dev) | |||
| 430 | pin_name(pin)); | 430 | pin_name(pin)); |
| 431 | } | 431 | } |
| 432 | 432 | ||
| 433 | kfree(entry); | ||
| 433 | return 0; | 434 | return 0; |
| 434 | } | 435 | } |
| 435 | 436 | ||
diff --git a/drivers/acpi/sbs.c b/drivers/acpi/sbs.c index d465ae6cdd00..dbd48498b938 100644 --- a/drivers/acpi/sbs.c +++ b/drivers/acpi/sbs.c | |||
| @@ -450,7 +450,7 @@ static ssize_t acpi_battery_alarm_store(struct device *dev, | |||
| 450 | { | 450 | { |
| 451 | unsigned long x; | 451 | unsigned long x; |
| 452 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); | 452 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); |
| 453 | if (sscanf(buf, "%ld\n", &x) == 1) | 453 | if (sscanf(buf, "%lu\n", &x) == 1) |
| 454 | battery->alarm_capacity = x / | 454 | battery->alarm_capacity = x / |
| 455 | (1000 * acpi_battery_scale(battery)); | 455 | (1000 * acpi_battery_scale(battery)); |
| 456 | if (battery->present) | 456 | if (battery->present) |
| @@ -668,6 +668,8 @@ static int acpi_sbs_resume(struct device *dev) | |||
| 668 | acpi_sbs_callback(sbs); | 668 | acpi_sbs_callback(sbs); |
| 669 | return 0; | 669 | return 0; |
| 670 | } | 670 | } |
| 671 | #else | ||
| 672 | #define acpi_sbs_resume NULL | ||
| 671 | #endif | 673 | #endif |
| 672 | 674 | ||
| 673 | static SIMPLE_DEV_PM_OPS(acpi_sbs_pm, NULL, acpi_sbs_resume); | 675 | static SIMPLE_DEV_PM_OPS(acpi_sbs_pm, NULL, acpi_sbs_resume); |
diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c index 8349a555b92b..08626c851be7 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c | |||
| @@ -102,6 +102,8 @@ MODULE_DEVICE_TABLE(acpi, thermal_device_ids); | |||
| 102 | 102 | ||
| 103 | #ifdef CONFIG_PM_SLEEP | 103 | #ifdef CONFIG_PM_SLEEP |
| 104 | static int acpi_thermal_resume(struct device *dev); | 104 | static int acpi_thermal_resume(struct device *dev); |
| 105 | #else | ||
| 106 | #define acpi_thermal_resume NULL | ||
| 105 | #endif | 107 | #endif |
| 106 | static SIMPLE_DEV_PM_OPS(acpi_thermal_pm, NULL, acpi_thermal_resume); | 108 | static SIMPLE_DEV_PM_OPS(acpi_thermal_pm, NULL, acpi_thermal_resume); |
| 107 | 109 | ||
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index b727d105046d..b6ba88ed31ae 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
| @@ -81,11 +81,12 @@ static bool allow_duplicates; | |||
| 81 | module_param(allow_duplicates, bool, 0644); | 81 | module_param(allow_duplicates, bool, 0644); |
| 82 | 82 | ||
| 83 | /* | 83 | /* |
| 84 | * For Windows 8 systems: if set ture and the GPU driver has | 84 | * For Windows 8 systems: used to decide if video module |
| 85 | * registered a backlight interface, skip registering ACPI video's. | 85 | * should skip registering backlight interface of its own. |
| 86 | */ | 86 | */ |
| 87 | static bool use_native_backlight = false; | 87 | static int use_native_backlight_param = -1; |
| 88 | module_param(use_native_backlight, bool, 0644); | 88 | module_param_named(use_native_backlight, use_native_backlight_param, int, 0444); |
| 89 | static bool use_native_backlight_dmi = false; | ||
| 89 | 90 | ||
| 90 | static int register_count; | 91 | static int register_count; |
| 91 | static struct mutex video_list_lock; | 92 | static struct mutex video_list_lock; |
| @@ -231,9 +232,17 @@ static int acpi_video_get_next_level(struct acpi_video_device *device, | |||
| 231 | static int acpi_video_switch_brightness(struct acpi_video_device *device, | 232 | static int acpi_video_switch_brightness(struct acpi_video_device *device, |
| 232 | int event); | 233 | int event); |
| 233 | 234 | ||
| 235 | static bool acpi_video_use_native_backlight(void) | ||
| 236 | { | ||
| 237 | if (use_native_backlight_param != -1) | ||
| 238 | return use_native_backlight_param; | ||
| 239 | else | ||
| 240 | return use_native_backlight_dmi; | ||
| 241 | } | ||
| 242 | |||
| 234 | static bool acpi_video_verify_backlight_support(void) | 243 | static bool acpi_video_verify_backlight_support(void) |
| 235 | { | 244 | { |
| 236 | if (acpi_osi_is_win8() && use_native_backlight && | 245 | if (acpi_osi_is_win8() && acpi_video_use_native_backlight() && |
| 237 | backlight_device_registered(BACKLIGHT_RAW)) | 246 | backlight_device_registered(BACKLIGHT_RAW)) |
| 238 | return false; | 247 | return false; |
| 239 | return acpi_video_backlight_support(); | 248 | return acpi_video_backlight_support(); |
| @@ -398,6 +407,12 @@ static int __init video_set_bqc_offset(const struct dmi_system_id *d) | |||
| 398 | return 0; | 407 | return 0; |
| 399 | } | 408 | } |
| 400 | 409 | ||
| 410 | static int __init video_set_use_native_backlight(const struct dmi_system_id *d) | ||
| 411 | { | ||
| 412 | use_native_backlight_dmi = true; | ||
| 413 | return 0; | ||
| 414 | } | ||
| 415 | |||
| 401 | static struct dmi_system_id video_dmi_table[] __initdata = { | 416 | static struct dmi_system_id video_dmi_table[] __initdata = { |
| 402 | /* | 417 | /* |
| 403 | * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121 | 418 | * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121 |
| @@ -442,6 +457,120 @@ static struct dmi_system_id video_dmi_table[] __initdata = { | |||
| 442 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"), | 457 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"), |
| 443 | }, | 458 | }, |
| 444 | }, | 459 | }, |
| 460 | { | ||
| 461 | .callback = video_set_use_native_backlight, | ||
| 462 | .ident = "ThinkPad T430s", | ||
| 463 | .matches = { | ||
| 464 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
| 465 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T430s"), | ||
| 466 | }, | ||
| 467 | }, | ||
| 468 | { | ||
| 469 | .callback = video_set_use_native_backlight, | ||
| 470 | .ident = "ThinkPad X230", | ||
| 471 | .matches = { | ||
| 472 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
| 473 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X230"), | ||
| 474 | }, | ||
| 475 | }, | ||
| 476 | { | ||
| 477 | .callback = video_set_use_native_backlight, | ||
| 478 | .ident = "ThinkPad X1 Carbon", | ||
| 479 | .matches = { | ||
| 480 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
| 481 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X1 Carbon"), | ||
| 482 | }, | ||
| 483 | }, | ||
| 484 | { | ||
| 485 | .callback = video_set_use_native_backlight, | ||
| 486 | .ident = "Lenovo Yoga 13", | ||
| 487 | .matches = { | ||
| 488 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
| 489 | DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo IdeaPad Yoga 13"), | ||
| 490 | }, | ||
| 491 | }, | ||
| 492 | { | ||
| 493 | .callback = video_set_use_native_backlight, | ||
| 494 | .ident = "Dell Inspiron 7520", | ||
| 495 | .matches = { | ||
| 496 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 497 | DMI_MATCH(DMI_PRODUCT_VERSION, "Inspiron 7520"), | ||
| 498 | }, | ||
| 499 | }, | ||
| 500 | { | ||
| 501 | .callback = video_set_use_native_backlight, | ||
| 502 | .ident = "Acer Aspire 5733Z", | ||
| 503 | .matches = { | ||
| 504 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), | ||
| 505 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5733Z"), | ||
| 506 | }, | ||
| 507 | }, | ||
| 508 | { | ||
| 509 | .callback = video_set_use_native_backlight, | ||
| 510 | .ident = "Acer Aspire V5-431", | ||
| 511 | .matches = { | ||
| 512 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), | ||
| 513 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire V5-431"), | ||
| 514 | }, | ||
| 515 | }, | ||
| 516 | { | ||
| 517 | .callback = video_set_use_native_backlight, | ||
| 518 | .ident = "HP ProBook 4340s", | ||
| 519 | .matches = { | ||
| 520 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 521 | DMI_MATCH(DMI_PRODUCT_VERSION, "HP ProBook 4340s"), | ||
| 522 | }, | ||
| 523 | }, | ||
| 524 | { | ||
| 525 | .callback = video_set_use_native_backlight, | ||
| 526 | .ident = "HP ProBook 2013 models", | ||
| 527 | .matches = { | ||
| 528 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 529 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook "), | ||
| 530 | DMI_MATCH(DMI_PRODUCT_NAME, " G1"), | ||
| 531 | }, | ||
| 532 | }, | ||
| 533 | { | ||
| 534 | .callback = video_set_use_native_backlight, | ||
| 535 | .ident = "HP EliteBook 2013 models", | ||
| 536 | .matches = { | ||
| 537 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 538 | DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook "), | ||
| 539 | DMI_MATCH(DMI_PRODUCT_NAME, " G1"), | ||
| 540 | }, | ||
| 541 | }, | ||
| 542 | { | ||
| 543 | .callback = video_set_use_native_backlight, | ||
| 544 | .ident = "HP ZBook 14", | ||
| 545 | .matches = { | ||
| 546 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 547 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 14"), | ||
| 548 | }, | ||
| 549 | }, | ||
| 550 | { | ||
| 551 | .callback = video_set_use_native_backlight, | ||
| 552 | .ident = "HP ZBook 15", | ||
| 553 | .matches = { | ||
| 554 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 555 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 15"), | ||
| 556 | }, | ||
| 557 | }, | ||
| 558 | { | ||
| 559 | .callback = video_set_use_native_backlight, | ||
| 560 | .ident = "HP ZBook 17", | ||
| 561 | .matches = { | ||
| 562 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 563 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 17"), | ||
| 564 | }, | ||
| 565 | }, | ||
| 566 | { | ||
| 567 | .callback = video_set_use_native_backlight, | ||
| 568 | .ident = "HP EliteBook 8780w", | ||
| 569 | .matches = { | ||
| 570 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 571 | DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook 8780w"), | ||
| 572 | }, | ||
| 573 | }, | ||
| 445 | {} | 574 | {} |
| 446 | }; | 575 | }; |
| 447 | 576 | ||
| @@ -685,6 +814,7 @@ acpi_video_init_brightness(struct acpi_video_device *device) | |||
| 685 | union acpi_object *o; | 814 | union acpi_object *o; |
| 686 | struct acpi_video_device_brightness *br = NULL; | 815 | struct acpi_video_device_brightness *br = NULL; |
| 687 | int result = -EINVAL; | 816 | int result = -EINVAL; |
| 817 | u32 value; | ||
| 688 | 818 | ||
| 689 | if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) { | 819 | if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) { |
| 690 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available " | 820 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available " |
| @@ -715,7 +845,12 @@ acpi_video_init_brightness(struct acpi_video_device *device) | |||
| 715 | printk(KERN_ERR PREFIX "Invalid data\n"); | 845 | printk(KERN_ERR PREFIX "Invalid data\n"); |
| 716 | continue; | 846 | continue; |
| 717 | } | 847 | } |
| 718 | br->levels[count] = (u32) o->integer.value; | 848 | value = (u32) o->integer.value; |
| 849 | /* Skip duplicate entries */ | ||
| 850 | if (count > 2 && br->levels[count - 1] == value) | ||
| 851 | continue; | ||
| 852 | |||
| 853 | br->levels[count] = value; | ||
| 719 | 854 | ||
| 720 | if (br->levels[count] > max_level) | 855 | if (br->levels[count] > max_level) |
| 721 | max_level = br->levels[count]; | 856 | max_level = br->levels[count]; |
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c index a697b77b8865..19080c8e2f2a 100644 --- a/drivers/acpi/video_detect.c +++ b/drivers/acpi/video_detect.c | |||
| @@ -168,22 +168,6 @@ static struct dmi_system_id video_detect_dmi_table[] = { | |||
| 168 | DMI_MATCH(DMI_PRODUCT_NAME, "UL30A"), | 168 | DMI_MATCH(DMI_PRODUCT_NAME, "UL30A"), |
| 169 | }, | 169 | }, |
| 170 | }, | 170 | }, |
| 171 | { | ||
| 172 | .callback = video_detect_force_vendor, | ||
| 173 | .ident = "HP EliteBook Revolve 810", | ||
| 174 | .matches = { | ||
| 175 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 176 | DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Revolve 810 G1"), | ||
| 177 | }, | ||
| 178 | }, | ||
| 179 | { | ||
| 180 | .callback = video_detect_force_vendor, | ||
| 181 | .ident = "Lenovo Yoga 13", | ||
| 182 | .matches = { | ||
| 183 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
| 184 | DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo IdeaPad Yoga 13"), | ||
| 185 | }, | ||
| 186 | }, | ||
| 187 | { }, | 171 | { }, |
| 188 | }; | 172 | }; |
| 189 | 173 | ||
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 08ca8c9f41cd..cb003a6b72c8 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
| @@ -1323,8 +1323,7 @@ static int __cpufreq_remove_dev_prepare(struct device *dev, | |||
| 1323 | up_read(&policy->rwsem); | 1323 | up_read(&policy->rwsem); |
| 1324 | 1324 | ||
| 1325 | if (cpu != policy->cpu) { | 1325 | if (cpu != policy->cpu) { |
| 1326 | if (!frozen) | 1326 | sysfs_remove_link(&dev->kobj, "cpufreq"); |
| 1327 | sysfs_remove_link(&dev->kobj, "cpufreq"); | ||
| 1328 | } else if (cpus > 1) { | 1327 | } else if (cpus > 1) { |
| 1329 | new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu); | 1328 | new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu); |
| 1330 | if (new_cpu >= 0) { | 1329 | if (new_cpu >= 0) { |
diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c index c788abf1c457..e90816105921 100644 --- a/drivers/cpufreq/intel_pstate.c +++ b/drivers/cpufreq/intel_pstate.c | |||
| @@ -34,8 +34,10 @@ | |||
| 34 | 34 | ||
| 35 | #define SAMPLE_COUNT 3 | 35 | #define SAMPLE_COUNT 3 |
| 36 | 36 | ||
| 37 | #define BYT_RATIOS 0x66a | 37 | #define BYT_RATIOS 0x66a |
| 38 | #define BYT_VIDS 0x66b | 38 | #define BYT_VIDS 0x66b |
| 39 | #define BYT_TURBO_RATIOS 0x66c | ||
| 40 | |||
| 39 | 41 | ||
| 40 | #define FRAC_BITS 8 | 42 | #define FRAC_BITS 8 |
| 41 | #define int_tofp(X) ((int64_t)(X) << FRAC_BITS) | 43 | #define int_tofp(X) ((int64_t)(X) << FRAC_BITS) |
| @@ -357,7 +359,7 @@ static int byt_get_min_pstate(void) | |||
| 357 | { | 359 | { |
| 358 | u64 value; | 360 | u64 value; |
| 359 | rdmsrl(BYT_RATIOS, value); | 361 | rdmsrl(BYT_RATIOS, value); |
| 360 | return value & 0xFF; | 362 | return (value >> 8) & 0xFF; |
| 361 | } | 363 | } |
| 362 | 364 | ||
| 363 | static int byt_get_max_pstate(void) | 365 | static int byt_get_max_pstate(void) |
| @@ -367,6 +369,13 @@ static int byt_get_max_pstate(void) | |||
| 367 | return (value >> 16) & 0xFF; | 369 | return (value >> 16) & 0xFF; |
| 368 | } | 370 | } |
| 369 | 371 | ||
| 372 | static int byt_get_turbo_pstate(void) | ||
| 373 | { | ||
| 374 | u64 value; | ||
| 375 | rdmsrl(BYT_TURBO_RATIOS, value); | ||
| 376 | return value & 0x3F; | ||
| 377 | } | ||
| 378 | |||
| 370 | static void byt_set_pstate(struct cpudata *cpudata, int pstate) | 379 | static void byt_set_pstate(struct cpudata *cpudata, int pstate) |
| 371 | { | 380 | { |
| 372 | u64 val; | 381 | u64 val; |
| @@ -469,7 +478,7 @@ static struct cpu_defaults byt_params = { | |||
| 469 | .funcs = { | 478 | .funcs = { |
| 470 | .get_max = byt_get_max_pstate, | 479 | .get_max = byt_get_max_pstate, |
| 471 | .get_min = byt_get_min_pstate, | 480 | .get_min = byt_get_min_pstate, |
| 472 | .get_turbo = byt_get_max_pstate, | 481 | .get_turbo = byt_get_turbo_pstate, |
| 473 | .set = byt_set_pstate, | 482 | .set = byt_set_pstate, |
| 474 | .get_vid = byt_get_vid, | 483 | .get_vid = byt_get_vid, |
| 475 | }, | 484 | }, |
diff --git a/drivers/cpufreq/powernow-k8.c b/drivers/cpufreq/powernow-k8.c index e10b646634d7..6684e0342792 100644 --- a/drivers/cpufreq/powernow-k8.c +++ b/drivers/cpufreq/powernow-k8.c | |||
| @@ -1076,7 +1076,7 @@ static int powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1076 | { | 1076 | { |
| 1077 | struct powernow_k8_data *data; | 1077 | struct powernow_k8_data *data; |
| 1078 | struct init_on_cpu init_on_cpu; | 1078 | struct init_on_cpu init_on_cpu; |
| 1079 | int rc; | 1079 | int rc, cpu; |
| 1080 | 1080 | ||
| 1081 | smp_call_function_single(pol->cpu, check_supported_cpu, &rc, 1); | 1081 | smp_call_function_single(pol->cpu, check_supported_cpu, &rc, 1); |
| 1082 | if (rc) | 1082 | if (rc) |
| @@ -1140,7 +1140,9 @@ static int powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1140 | pr_debug("cpu_init done, current fid 0x%x, vid 0x%x\n", | 1140 | pr_debug("cpu_init done, current fid 0x%x, vid 0x%x\n", |
| 1141 | data->currfid, data->currvid); | 1141 | data->currfid, data->currvid); |
| 1142 | 1142 | ||
| 1143 | per_cpu(powernow_data, pol->cpu) = data; | 1143 | /* Point all the CPUs in this policy to the same data */ |
| 1144 | for_each_cpu(cpu, pol->cpus) | ||
| 1145 | per_cpu(powernow_data, cpu) = data; | ||
| 1144 | 1146 | ||
| 1145 | return 0; | 1147 | return 0; |
| 1146 | 1148 | ||
| @@ -1155,6 +1157,7 @@ err_out: | |||
| 1155 | static int powernowk8_cpu_exit(struct cpufreq_policy *pol) | 1157 | static int powernowk8_cpu_exit(struct cpufreq_policy *pol) |
| 1156 | { | 1158 | { |
| 1157 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); | 1159 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); |
| 1160 | int cpu; | ||
| 1158 | 1161 | ||
| 1159 | if (!data) | 1162 | if (!data) |
| 1160 | return -EINVAL; | 1163 | return -EINVAL; |
| @@ -1165,7 +1168,8 @@ static int powernowk8_cpu_exit(struct cpufreq_policy *pol) | |||
| 1165 | 1168 | ||
| 1166 | kfree(data->powernow_table); | 1169 | kfree(data->powernow_table); |
| 1167 | kfree(data); | 1170 | kfree(data); |
| 1168 | per_cpu(powernow_data, pol->cpu) = NULL; | 1171 | for_each_cpu(cpu, pol->cpus) |
| 1172 | per_cpu(powernow_data, cpu) = NULL; | ||
| 1169 | 1173 | ||
| 1170 | return 0; | 1174 | return 0; |
| 1171 | } | 1175 | } |
diff --git a/drivers/gpu/drm/nouveau/nouveau_acpi.c b/drivers/gpu/drm/nouveau/nouveau_acpi.c index 4ef83df2b246..83face3f608f 100644 --- a/drivers/gpu/drm/nouveau/nouveau_acpi.c +++ b/drivers/gpu/drm/nouveau/nouveau_acpi.c | |||
| @@ -106,6 +106,29 @@ static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t * | |||
| 106 | return 0; | 106 | return 0; |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | /* | ||
| 110 | * On some platforms, _DSM(nouveau_op_dsm_muid, func0) has special | ||
| 111 | * requirements on the fourth parameter, so a private implementation | ||
| 112 | * instead of using acpi_check_dsm(). | ||
| 113 | */ | ||
| 114 | static int nouveau_check_optimus_dsm(acpi_handle handle) | ||
| 115 | { | ||
| 116 | int result; | ||
| 117 | |||
| 118 | /* | ||
| 119 | * Function 0 returns a Buffer containing available functions. | ||
| 120 | * The args parameter is ignored for function 0, so just put 0 in it | ||
| 121 | */ | ||
| 122 | if (nouveau_optimus_dsm(handle, 0, 0, &result)) | ||
| 123 | return 0; | ||
| 124 | |||
| 125 | /* | ||
| 126 | * ACPI Spec v4 9.14.1: if bit 0 is zero, no function is supported. | ||
| 127 | * If the n-th bit is enabled, function n is supported | ||
| 128 | */ | ||
| 129 | return result & 1 && result & (1 << NOUVEAU_DSM_OPTIMUS_CAPS); | ||
| 130 | } | ||
| 131 | |||
| 109 | static int nouveau_dsm(acpi_handle handle, int func, int arg) | 132 | static int nouveau_dsm(acpi_handle handle, int func, int arg) |
| 110 | { | 133 | { |
| 111 | int ret = 0; | 134 | int ret = 0; |
| @@ -207,8 +230,7 @@ static int nouveau_dsm_pci_probe(struct pci_dev *pdev) | |||
| 207 | 1 << NOUVEAU_DSM_POWER)) | 230 | 1 << NOUVEAU_DSM_POWER)) |
| 208 | retval |= NOUVEAU_DSM_HAS_MUX; | 231 | retval |= NOUVEAU_DSM_HAS_MUX; |
| 209 | 232 | ||
| 210 | if (acpi_check_dsm(dhandle, nouveau_op_dsm_muid, 0x00000100, | 233 | if (nouveau_check_optimus_dsm(dhandle)) |
| 211 | 1 << NOUVEAU_DSM_OPTIMUS_CAPS)) | ||
| 212 | retval |= NOUVEAU_DSM_HAS_OPT; | 234 | retval |= NOUVEAU_DSM_HAS_OPT; |
| 213 | 235 | ||
| 214 | if (retval & NOUVEAU_DSM_HAS_OPT) { | 236 | if (retval & NOUVEAU_DSM_HAS_OPT) { |
diff --git a/drivers/hwmon/max1668.c b/drivers/hwmon/max1668.c index a7626358c95d..029b65e6c589 100644 --- a/drivers/hwmon/max1668.c +++ b/drivers/hwmon/max1668.c | |||
| @@ -243,7 +243,7 @@ static ssize_t set_temp_min(struct device *dev, | |||
| 243 | data->temp_min[index] = clamp_val(temp/1000, -128, 127); | 243 | data->temp_min[index] = clamp_val(temp/1000, -128, 127); |
| 244 | if (i2c_smbus_write_byte_data(client, | 244 | if (i2c_smbus_write_byte_data(client, |
| 245 | MAX1668_REG_LIML_WR(index), | 245 | MAX1668_REG_LIML_WR(index), |
| 246 | data->temp_max[index])) | 246 | data->temp_min[index])) |
| 247 | count = -EIO; | 247 | count = -EIO; |
| 248 | mutex_unlock(&data->update_lock); | 248 | mutex_unlock(&data->update_lock); |
| 249 | 249 | ||
diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c index 8911850c9444..1d9ab39af29f 100644 --- a/drivers/iommu/arm-smmu.c +++ b/drivers/iommu/arm-smmu.c | |||
| @@ -79,7 +79,6 @@ | |||
| 79 | 79 | ||
| 80 | #define ARM_SMMU_PTE_CONT_SIZE (PAGE_SIZE * ARM_SMMU_PTE_CONT_ENTRIES) | 80 | #define ARM_SMMU_PTE_CONT_SIZE (PAGE_SIZE * ARM_SMMU_PTE_CONT_ENTRIES) |
| 81 | #define ARM_SMMU_PTE_CONT_MASK (~(ARM_SMMU_PTE_CONT_SIZE - 1)) | 81 | #define ARM_SMMU_PTE_CONT_MASK (~(ARM_SMMU_PTE_CONT_SIZE - 1)) |
| 82 | #define ARM_SMMU_PTE_HWTABLE_SIZE (PTRS_PER_PTE * sizeof(pte_t)) | ||
| 83 | 82 | ||
| 84 | /* Stage-1 PTE */ | 83 | /* Stage-1 PTE */ |
| 85 | #define ARM_SMMU_PTE_AP_UNPRIV (((pteval_t)1) << 6) | 84 | #define ARM_SMMU_PTE_AP_UNPRIV (((pteval_t)1) << 6) |
| @@ -191,6 +190,9 @@ | |||
| 191 | #define ARM_SMMU_GR1_CBAR(n) (0x0 + ((n) << 2)) | 190 | #define ARM_SMMU_GR1_CBAR(n) (0x0 + ((n) << 2)) |
| 192 | #define CBAR_VMID_SHIFT 0 | 191 | #define CBAR_VMID_SHIFT 0 |
| 193 | #define CBAR_VMID_MASK 0xff | 192 | #define CBAR_VMID_MASK 0xff |
| 193 | #define CBAR_S1_BPSHCFG_SHIFT 8 | ||
| 194 | #define CBAR_S1_BPSHCFG_MASK 3 | ||
| 195 | #define CBAR_S1_BPSHCFG_NSH 3 | ||
| 194 | #define CBAR_S1_MEMATTR_SHIFT 12 | 196 | #define CBAR_S1_MEMATTR_SHIFT 12 |
| 195 | #define CBAR_S1_MEMATTR_MASK 0xf | 197 | #define CBAR_S1_MEMATTR_MASK 0xf |
| 196 | #define CBAR_S1_MEMATTR_WB 0xf | 198 | #define CBAR_S1_MEMATTR_WB 0xf |
| @@ -393,7 +395,7 @@ struct arm_smmu_domain { | |||
| 393 | struct arm_smmu_cfg root_cfg; | 395 | struct arm_smmu_cfg root_cfg; |
| 394 | phys_addr_t output_mask; | 396 | phys_addr_t output_mask; |
| 395 | 397 | ||
| 396 | struct mutex lock; | 398 | spinlock_t lock; |
| 397 | }; | 399 | }; |
| 398 | 400 | ||
| 399 | static DEFINE_SPINLOCK(arm_smmu_devices_lock); | 401 | static DEFINE_SPINLOCK(arm_smmu_devices_lock); |
| @@ -632,6 +634,28 @@ static irqreturn_t arm_smmu_global_fault(int irq, void *dev) | |||
| 632 | return IRQ_HANDLED; | 634 | return IRQ_HANDLED; |
| 633 | } | 635 | } |
| 634 | 636 | ||
| 637 | static void arm_smmu_flush_pgtable(struct arm_smmu_device *smmu, void *addr, | ||
| 638 | size_t size) | ||
| 639 | { | ||
| 640 | unsigned long offset = (unsigned long)addr & ~PAGE_MASK; | ||
| 641 | |||
| 642 | |||
| 643 | /* Ensure new page tables are visible to the hardware walker */ | ||
| 644 | if (smmu->features & ARM_SMMU_FEAT_COHERENT_WALK) { | ||
| 645 | dsb(); | ||
| 646 | } else { | ||
| 647 | /* | ||
| 648 | * If the SMMU can't walk tables in the CPU caches, treat them | ||
| 649 | * like non-coherent DMA since we need to flush the new entries | ||
| 650 | * all the way out to memory. There's no possibility of | ||
| 651 | * recursion here as the SMMU table walker will not be wired | ||
| 652 | * through another SMMU. | ||
| 653 | */ | ||
| 654 | dma_map_page(smmu->dev, virt_to_page(addr), offset, size, | ||
| 655 | DMA_TO_DEVICE); | ||
| 656 | } | ||
| 657 | } | ||
| 658 | |||
| 635 | static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain) | 659 | static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain) |
| 636 | { | 660 | { |
| 637 | u32 reg; | 661 | u32 reg; |
| @@ -650,11 +674,16 @@ static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain) | |||
| 650 | if (smmu->version == 1) | 674 | if (smmu->version == 1) |
| 651 | reg |= root_cfg->irptndx << CBAR_IRPTNDX_SHIFT; | 675 | reg |= root_cfg->irptndx << CBAR_IRPTNDX_SHIFT; |
| 652 | 676 | ||
| 653 | /* Use the weakest memory type, so it is overridden by the pte */ | 677 | /* |
| 654 | if (stage1) | 678 | * Use the weakest shareability/memory types, so they are |
| 655 | reg |= (CBAR_S1_MEMATTR_WB << CBAR_S1_MEMATTR_SHIFT); | 679 | * overridden by the ttbcr/pte. |
| 656 | else | 680 | */ |
| 681 | if (stage1) { | ||
| 682 | reg |= (CBAR_S1_BPSHCFG_NSH << CBAR_S1_BPSHCFG_SHIFT) | | ||
| 683 | (CBAR_S1_MEMATTR_WB << CBAR_S1_MEMATTR_SHIFT); | ||
| 684 | } else { | ||
| 657 | reg |= ARM_SMMU_CB_VMID(root_cfg) << CBAR_VMID_SHIFT; | 685 | reg |= ARM_SMMU_CB_VMID(root_cfg) << CBAR_VMID_SHIFT; |
| 686 | } | ||
| 658 | writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBAR(root_cfg->cbndx)); | 687 | writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBAR(root_cfg->cbndx)); |
| 659 | 688 | ||
| 660 | if (smmu->version > 1) { | 689 | if (smmu->version > 1) { |
| @@ -715,6 +744,8 @@ static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain) | |||
| 715 | } | 744 | } |
| 716 | 745 | ||
| 717 | /* TTBR0 */ | 746 | /* TTBR0 */ |
| 747 | arm_smmu_flush_pgtable(smmu, root_cfg->pgd, | ||
| 748 | PTRS_PER_PGD * sizeof(pgd_t)); | ||
| 718 | reg = __pa(root_cfg->pgd); | 749 | reg = __pa(root_cfg->pgd); |
| 719 | writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_LO); | 750 | writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_LO); |
| 720 | reg = (phys_addr_t)__pa(root_cfg->pgd) >> 32; | 751 | reg = (phys_addr_t)__pa(root_cfg->pgd) >> 32; |
| @@ -901,7 +932,7 @@ static int arm_smmu_domain_init(struct iommu_domain *domain) | |||
| 901 | goto out_free_domain; | 932 | goto out_free_domain; |
| 902 | smmu_domain->root_cfg.pgd = pgd; | 933 | smmu_domain->root_cfg.pgd = pgd; |
| 903 | 934 | ||
| 904 | mutex_init(&smmu_domain->lock); | 935 | spin_lock_init(&smmu_domain->lock); |
| 905 | domain->priv = smmu_domain; | 936 | domain->priv = smmu_domain; |
| 906 | return 0; | 937 | return 0; |
| 907 | 938 | ||
| @@ -1128,6 +1159,7 @@ static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev) | |||
| 1128 | struct arm_smmu_domain *smmu_domain = domain->priv; | 1159 | struct arm_smmu_domain *smmu_domain = domain->priv; |
| 1129 | struct arm_smmu_device *device_smmu = dev->archdata.iommu; | 1160 | struct arm_smmu_device *device_smmu = dev->archdata.iommu; |
| 1130 | struct arm_smmu_master *master; | 1161 | struct arm_smmu_master *master; |
| 1162 | unsigned long flags; | ||
| 1131 | 1163 | ||
| 1132 | if (!device_smmu) { | 1164 | if (!device_smmu) { |
| 1133 | dev_err(dev, "cannot attach to SMMU, is it on the same bus?\n"); | 1165 | dev_err(dev, "cannot attach to SMMU, is it on the same bus?\n"); |
| @@ -1138,7 +1170,7 @@ static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev) | |||
| 1138 | * Sanity check the domain. We don't currently support domains | 1170 | * Sanity check the domain. We don't currently support domains |
| 1139 | * that cross between different SMMU chains. | 1171 | * that cross between different SMMU chains. |
| 1140 | */ | 1172 | */ |
| 1141 | mutex_lock(&smmu_domain->lock); | 1173 | spin_lock_irqsave(&smmu_domain->lock, flags); |
| 1142 | if (!smmu_domain->leaf_smmu) { | 1174 | if (!smmu_domain->leaf_smmu) { |
| 1143 | /* Now that we have a master, we can finalise the domain */ | 1175 | /* Now that we have a master, we can finalise the domain */ |
| 1144 | ret = arm_smmu_init_domain_context(domain, dev); | 1176 | ret = arm_smmu_init_domain_context(domain, dev); |
| @@ -1153,7 +1185,7 @@ static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev) | |||
| 1153 | dev_name(device_smmu->dev)); | 1185 | dev_name(device_smmu->dev)); |
| 1154 | goto err_unlock; | 1186 | goto err_unlock; |
| 1155 | } | 1187 | } |
| 1156 | mutex_unlock(&smmu_domain->lock); | 1188 | spin_unlock_irqrestore(&smmu_domain->lock, flags); |
| 1157 | 1189 | ||
| 1158 | /* Looks ok, so add the device to the domain */ | 1190 | /* Looks ok, so add the device to the domain */ |
| 1159 | master = find_smmu_master(smmu_domain->leaf_smmu, dev->of_node); | 1191 | master = find_smmu_master(smmu_domain->leaf_smmu, dev->of_node); |
| @@ -1163,7 +1195,7 @@ static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev) | |||
| 1163 | return arm_smmu_domain_add_master(smmu_domain, master); | 1195 | return arm_smmu_domain_add_master(smmu_domain, master); |
| 1164 | 1196 | ||
| 1165 | err_unlock: | 1197 | err_unlock: |
| 1166 | mutex_unlock(&smmu_domain->lock); | 1198 | spin_unlock_irqrestore(&smmu_domain->lock, flags); |
| 1167 | return ret; | 1199 | return ret; |
| 1168 | } | 1200 | } |
| 1169 | 1201 | ||
| @@ -1177,23 +1209,6 @@ static void arm_smmu_detach_dev(struct iommu_domain *domain, struct device *dev) | |||
| 1177 | arm_smmu_domain_remove_master(smmu_domain, master); | 1209 | arm_smmu_domain_remove_master(smmu_domain, master); |
| 1178 | } | 1210 | } |
| 1179 | 1211 | ||
| 1180 | static void arm_smmu_flush_pgtable(struct arm_smmu_device *smmu, void *addr, | ||
| 1181 | size_t size) | ||
| 1182 | { | ||
| 1183 | unsigned long offset = (unsigned long)addr & ~PAGE_MASK; | ||
| 1184 | |||
| 1185 | /* | ||
| 1186 | * If the SMMU can't walk tables in the CPU caches, treat them | ||
| 1187 | * like non-coherent DMA since we need to flush the new entries | ||
| 1188 | * all the way out to memory. There's no possibility of recursion | ||
| 1189 | * here as the SMMU table walker will not be wired through another | ||
| 1190 | * SMMU. | ||
| 1191 | */ | ||
| 1192 | if (!(smmu->features & ARM_SMMU_FEAT_COHERENT_WALK)) | ||
| 1193 | dma_map_page(smmu->dev, virt_to_page(addr), offset, size, | ||
| 1194 | DMA_TO_DEVICE); | ||
| 1195 | } | ||
| 1196 | |||
| 1197 | static bool arm_smmu_pte_is_contiguous_range(unsigned long addr, | 1212 | static bool arm_smmu_pte_is_contiguous_range(unsigned long addr, |
| 1198 | unsigned long end) | 1213 | unsigned long end) |
| 1199 | { | 1214 | { |
| @@ -1210,12 +1225,11 @@ static int arm_smmu_alloc_init_pte(struct arm_smmu_device *smmu, pmd_t *pmd, | |||
| 1210 | 1225 | ||
| 1211 | if (pmd_none(*pmd)) { | 1226 | if (pmd_none(*pmd)) { |
| 1212 | /* Allocate a new set of tables */ | 1227 | /* Allocate a new set of tables */ |
| 1213 | pgtable_t table = alloc_page(PGALLOC_GFP); | 1228 | pgtable_t table = alloc_page(GFP_ATOMIC|__GFP_ZERO); |
| 1214 | if (!table) | 1229 | if (!table) |
| 1215 | return -ENOMEM; | 1230 | return -ENOMEM; |
| 1216 | 1231 | ||
| 1217 | arm_smmu_flush_pgtable(smmu, page_address(table), | 1232 | arm_smmu_flush_pgtable(smmu, page_address(table), PAGE_SIZE); |
| 1218 | ARM_SMMU_PTE_HWTABLE_SIZE); | ||
| 1219 | if (!pgtable_page_ctor(table)) { | 1233 | if (!pgtable_page_ctor(table)) { |
| 1220 | __free_page(table); | 1234 | __free_page(table); |
| 1221 | return -ENOMEM; | 1235 | return -ENOMEM; |
| @@ -1317,9 +1331,15 @@ static int arm_smmu_alloc_init_pmd(struct arm_smmu_device *smmu, pud_t *pud, | |||
| 1317 | 1331 | ||
| 1318 | #ifndef __PAGETABLE_PMD_FOLDED | 1332 | #ifndef __PAGETABLE_PMD_FOLDED |
| 1319 | if (pud_none(*pud)) { | 1333 | if (pud_none(*pud)) { |
| 1320 | pmd = pmd_alloc_one(NULL, addr); | 1334 | pmd = (pmd_t *)get_zeroed_page(GFP_ATOMIC); |
| 1321 | if (!pmd) | 1335 | if (!pmd) |
| 1322 | return -ENOMEM; | 1336 | return -ENOMEM; |
| 1337 | |||
| 1338 | arm_smmu_flush_pgtable(smmu, pmd, PAGE_SIZE); | ||
| 1339 | pud_populate(NULL, pud, pmd); | ||
| 1340 | arm_smmu_flush_pgtable(smmu, pud, sizeof(*pud)); | ||
| 1341 | |||
| 1342 | pmd += pmd_index(addr); | ||
| 1323 | } else | 1343 | } else |
| 1324 | #endif | 1344 | #endif |
| 1325 | pmd = pmd_offset(pud, addr); | 1345 | pmd = pmd_offset(pud, addr); |
| @@ -1328,8 +1348,6 @@ static int arm_smmu_alloc_init_pmd(struct arm_smmu_device *smmu, pud_t *pud, | |||
| 1328 | next = pmd_addr_end(addr, end); | 1348 | next = pmd_addr_end(addr, end); |
| 1329 | ret = arm_smmu_alloc_init_pte(smmu, pmd, addr, end, pfn, | 1349 | ret = arm_smmu_alloc_init_pte(smmu, pmd, addr, end, pfn, |
| 1330 | flags, stage); | 1350 | flags, stage); |
| 1331 | pud_populate(NULL, pud, pmd); | ||
| 1332 | arm_smmu_flush_pgtable(smmu, pud, sizeof(*pud)); | ||
| 1333 | phys += next - addr; | 1351 | phys += next - addr; |
| 1334 | } while (pmd++, addr = next, addr < end); | 1352 | } while (pmd++, addr = next, addr < end); |
| 1335 | 1353 | ||
| @@ -1346,9 +1364,15 @@ static int arm_smmu_alloc_init_pud(struct arm_smmu_device *smmu, pgd_t *pgd, | |||
| 1346 | 1364 | ||
| 1347 | #ifndef __PAGETABLE_PUD_FOLDED | 1365 | #ifndef __PAGETABLE_PUD_FOLDED |
| 1348 | if (pgd_none(*pgd)) { | 1366 | if (pgd_none(*pgd)) { |
| 1349 | pud = pud_alloc_one(NULL, addr); | 1367 | pud = (pud_t *)get_zeroed_page(GFP_ATOMIC); |
| 1350 | if (!pud) | 1368 | if (!pud) |
| 1351 | return -ENOMEM; | 1369 | return -ENOMEM; |
| 1370 | |||
| 1371 | arm_smmu_flush_pgtable(smmu, pud, PAGE_SIZE); | ||
| 1372 | pgd_populate(NULL, pgd, pud); | ||
| 1373 | arm_smmu_flush_pgtable(smmu, pgd, sizeof(*pgd)); | ||
| 1374 | |||
| 1375 | pud += pud_index(addr); | ||
| 1352 | } else | 1376 | } else |
| 1353 | #endif | 1377 | #endif |
| 1354 | pud = pud_offset(pgd, addr); | 1378 | pud = pud_offset(pgd, addr); |
| @@ -1357,8 +1381,6 @@ static int arm_smmu_alloc_init_pud(struct arm_smmu_device *smmu, pgd_t *pgd, | |||
| 1357 | next = pud_addr_end(addr, end); | 1381 | next = pud_addr_end(addr, end); |
| 1358 | ret = arm_smmu_alloc_init_pmd(smmu, pud, addr, next, phys, | 1382 | ret = arm_smmu_alloc_init_pmd(smmu, pud, addr, next, phys, |
| 1359 | flags, stage); | 1383 | flags, stage); |
| 1360 | pgd_populate(NULL, pud, pgd); | ||
| 1361 | arm_smmu_flush_pgtable(smmu, pgd, sizeof(*pgd)); | ||
| 1362 | phys += next - addr; | 1384 | phys += next - addr; |
| 1363 | } while (pud++, addr = next, addr < end); | 1385 | } while (pud++, addr = next, addr < end); |
| 1364 | 1386 | ||
| @@ -1375,6 +1397,7 @@ static int arm_smmu_handle_mapping(struct arm_smmu_domain *smmu_domain, | |||
| 1375 | struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg; | 1397 | struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg; |
| 1376 | pgd_t *pgd = root_cfg->pgd; | 1398 | pgd_t *pgd = root_cfg->pgd; |
| 1377 | struct arm_smmu_device *smmu = root_cfg->smmu; | 1399 | struct arm_smmu_device *smmu = root_cfg->smmu; |
| 1400 | unsigned long irqflags; | ||
| 1378 | 1401 | ||
| 1379 | if (root_cfg->cbar == CBAR_TYPE_S2_TRANS) { | 1402 | if (root_cfg->cbar == CBAR_TYPE_S2_TRANS) { |
| 1380 | stage = 2; | 1403 | stage = 2; |
| @@ -1397,7 +1420,7 @@ static int arm_smmu_handle_mapping(struct arm_smmu_domain *smmu_domain, | |||
| 1397 | if (paddr & ~output_mask) | 1420 | if (paddr & ~output_mask) |
| 1398 | return -ERANGE; | 1421 | return -ERANGE; |
| 1399 | 1422 | ||
| 1400 | mutex_lock(&smmu_domain->lock); | 1423 | spin_lock_irqsave(&smmu_domain->lock, irqflags); |
| 1401 | pgd += pgd_index(iova); | 1424 | pgd += pgd_index(iova); |
| 1402 | end = iova + size; | 1425 | end = iova + size; |
| 1403 | do { | 1426 | do { |
| @@ -1413,11 +1436,7 @@ static int arm_smmu_handle_mapping(struct arm_smmu_domain *smmu_domain, | |||
| 1413 | } while (pgd++, iova != end); | 1436 | } while (pgd++, iova != end); |
| 1414 | 1437 | ||
| 1415 | out_unlock: | 1438 | out_unlock: |
| 1416 | mutex_unlock(&smmu_domain->lock); | 1439 | spin_unlock_irqrestore(&smmu_domain->lock, irqflags); |
| 1417 | |||
| 1418 | /* Ensure new page tables are visible to the hardware walker */ | ||
| 1419 | if (smmu->features & ARM_SMMU_FEAT_COHERENT_WALK) | ||
| 1420 | dsb(); | ||
| 1421 | 1440 | ||
| 1422 | return ret; | 1441 | return ret; |
| 1423 | } | 1442 | } |
| @@ -1987,8 +2006,10 @@ static int __init arm_smmu_init(void) | |||
| 1987 | if (!iommu_present(&platform_bus_type)) | 2006 | if (!iommu_present(&platform_bus_type)) |
| 1988 | bus_set_iommu(&platform_bus_type, &arm_smmu_ops); | 2007 | bus_set_iommu(&platform_bus_type, &arm_smmu_ops); |
| 1989 | 2008 | ||
| 2009 | #ifdef CONFIG_ARM_AMBA | ||
| 1990 | if (!iommu_present(&amba_bustype)) | 2010 | if (!iommu_present(&amba_bustype)) |
| 1991 | bus_set_iommu(&amba_bustype, &arm_smmu_ops); | 2011 | bus_set_iommu(&amba_bustype, &arm_smmu_ops); |
| 2012 | #endif | ||
| 1992 | 2013 | ||
| 1993 | return 0; | 2014 | return 0; |
| 1994 | } | 2015 | } |
diff --git a/drivers/mfd/da9055-i2c.c b/drivers/mfd/da9055-i2c.c index 13af7e50021e..8103e4362132 100644 --- a/drivers/mfd/da9055-i2c.c +++ b/drivers/mfd/da9055-i2c.c | |||
| @@ -53,17 +53,25 @@ static int da9055_i2c_remove(struct i2c_client *i2c) | |||
| 53 | return 0; | 53 | return 0; |
| 54 | } | 54 | } |
| 55 | 55 | ||
| 56 | /* | ||
| 57 | * DO NOT change the device Ids. The naming is intentionally specific as both | ||
| 58 | * the PMIC and CODEC parts of this chip are instantiated separately as I2C | ||
| 59 | * devices (both have configurable I2C addresses, and are to all intents and | ||
| 60 | * purposes separate). As a result there are specific DA9055 ids for PMIC | ||
| 61 | * and CODEC, which must be different to operate together. | ||
| 62 | */ | ||
| 56 | static struct i2c_device_id da9055_i2c_id[] = { | 63 | static struct i2c_device_id da9055_i2c_id[] = { |
| 57 | {"da9055", 0}, | 64 | {"da9055-pmic", 0}, |
| 58 | { } | 65 | { } |
| 59 | }; | 66 | }; |
| 67 | MODULE_DEVICE_TABLE(i2c, da9055_i2c_id); | ||
| 60 | 68 | ||
| 61 | static struct i2c_driver da9055_i2c_driver = { | 69 | static struct i2c_driver da9055_i2c_driver = { |
| 62 | .probe = da9055_i2c_probe, | 70 | .probe = da9055_i2c_probe, |
| 63 | .remove = da9055_i2c_remove, | 71 | .remove = da9055_i2c_remove, |
| 64 | .id_table = da9055_i2c_id, | 72 | .id_table = da9055_i2c_id, |
| 65 | .driver = { | 73 | .driver = { |
| 66 | .name = "da9055", | 74 | .name = "da9055-pmic", |
| 67 | .owner = THIS_MODULE, | 75 | .owner = THIS_MODULE, |
| 68 | }, | 76 | }, |
| 69 | }; | 77 | }; |
diff --git a/drivers/of/base.c b/drivers/of/base.c index 10b51106c854..89e888a78899 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c | |||
| @@ -342,27 +342,72 @@ struct device_node *of_get_cpu_node(int cpu, unsigned int *thread) | |||
| 342 | } | 342 | } |
| 343 | EXPORT_SYMBOL(of_get_cpu_node); | 343 | EXPORT_SYMBOL(of_get_cpu_node); |
| 344 | 344 | ||
| 345 | /** Checks if the given "compat" string matches one of the strings in | 345 | /** |
| 346 | * the device's "compatible" property | 346 | * __of_device_is_compatible() - Check if the node matches given constraints |
| 347 | * @device: pointer to node | ||
| 348 | * @compat: required compatible string, NULL or "" for any match | ||
| 349 | * @type: required device_type value, NULL or "" for any match | ||
| 350 | * @name: required node name, NULL or "" for any match | ||
| 351 | * | ||
| 352 | * Checks if the given @compat, @type and @name strings match the | ||
| 353 | * properties of the given @device. A constraints can be skipped by | ||
| 354 | * passing NULL or an empty string as the constraint. | ||
| 355 | * | ||
| 356 | * Returns 0 for no match, and a positive integer on match. The return | ||
| 357 | * value is a relative score with larger values indicating better | ||
| 358 | * matches. The score is weighted for the most specific compatible value | ||
| 359 | * to get the highest score. Matching type is next, followed by matching | ||
| 360 | * name. Practically speaking, this results in the following priority | ||
| 361 | * order for matches: | ||
| 362 | * | ||
| 363 | * 1. specific compatible && type && name | ||
| 364 | * 2. specific compatible && type | ||
| 365 | * 3. specific compatible && name | ||
| 366 | * 4. specific compatible | ||
| 367 | * 5. general compatible && type && name | ||
| 368 | * 6. general compatible && type | ||
| 369 | * 7. general compatible && name | ||
| 370 | * 8. general compatible | ||
| 371 | * 9. type && name | ||
| 372 | * 10. type | ||
| 373 | * 11. name | ||
| 347 | */ | 374 | */ |
| 348 | static int __of_device_is_compatible(const struct device_node *device, | 375 | static int __of_device_is_compatible(const struct device_node *device, |
| 349 | const char *compat) | 376 | const char *compat, const char *type, const char *name) |
| 350 | { | 377 | { |
| 351 | const char* cp; | 378 | struct property *prop; |
| 352 | int cplen, l; | 379 | const char *cp; |
| 380 | int index = 0, score = 0; | ||
| 381 | |||
| 382 | /* Compatible match has highest priority */ | ||
| 383 | if (compat && compat[0]) { | ||
| 384 | prop = __of_find_property(device, "compatible", NULL); | ||
| 385 | for (cp = of_prop_next_string(prop, NULL); cp; | ||
| 386 | cp = of_prop_next_string(prop, cp), index++) { | ||
| 387 | if (of_compat_cmp(cp, compat, strlen(compat)) == 0) { | ||
| 388 | score = INT_MAX/2 - (index << 2); | ||
| 389 | break; | ||
| 390 | } | ||
| 391 | } | ||
| 392 | if (!score) | ||
| 393 | return 0; | ||
| 394 | } | ||
| 353 | 395 | ||
| 354 | cp = __of_get_property(device, "compatible", &cplen); | 396 | /* Matching type is better than matching name */ |
| 355 | if (cp == NULL) | 397 | if (type && type[0]) { |
| 356 | return 0; | 398 | if (!device->type || of_node_cmp(type, device->type)) |
| 357 | while (cplen > 0) { | 399 | return 0; |
| 358 | if (of_compat_cmp(cp, compat, strlen(compat)) == 0) | 400 | score += 2; |
| 359 | return 1; | ||
| 360 | l = strlen(cp) + 1; | ||
| 361 | cp += l; | ||
| 362 | cplen -= l; | ||
| 363 | } | 401 | } |
| 364 | 402 | ||
| 365 | return 0; | 403 | /* Matching name is a bit better than not */ |
| 404 | if (name && name[0]) { | ||
| 405 | if (!device->name || of_node_cmp(name, device->name)) | ||
| 406 | return 0; | ||
| 407 | score++; | ||
| 408 | } | ||
| 409 | |||
| 410 | return score; | ||
| 366 | } | 411 | } |
| 367 | 412 | ||
| 368 | /** Checks if the given "compat" string matches one of the strings in | 413 | /** Checks if the given "compat" string matches one of the strings in |
| @@ -375,7 +420,7 @@ int of_device_is_compatible(const struct device_node *device, | |||
| 375 | int res; | 420 | int res; |
| 376 | 421 | ||
| 377 | raw_spin_lock_irqsave(&devtree_lock, flags); | 422 | raw_spin_lock_irqsave(&devtree_lock, flags); |
| 378 | res = __of_device_is_compatible(device, compat); | 423 | res = __of_device_is_compatible(device, compat, NULL, NULL); |
| 379 | raw_spin_unlock_irqrestore(&devtree_lock, flags); | 424 | raw_spin_unlock_irqrestore(&devtree_lock, flags); |
| 380 | return res; | 425 | return res; |
| 381 | } | 426 | } |
| @@ -681,10 +726,7 @@ struct device_node *of_find_compatible_node(struct device_node *from, | |||
| 681 | raw_spin_lock_irqsave(&devtree_lock, flags); | 726 | raw_spin_lock_irqsave(&devtree_lock, flags); |
| 682 | np = from ? from->allnext : of_allnodes; | 727 | np = from ? from->allnext : of_allnodes; |
| 683 | for (; np; np = np->allnext) { | 728 | for (; np; np = np->allnext) { |
| 684 | if (type | 729 | if (__of_device_is_compatible(np, compatible, type, NULL) && |
| 685 | && !(np->type && (of_node_cmp(np->type, type) == 0))) | ||
| 686 | continue; | ||
| 687 | if (__of_device_is_compatible(np, compatible) && | ||
| 688 | of_node_get(np)) | 730 | of_node_get(np)) |
| 689 | break; | 731 | break; |
| 690 | } | 732 | } |
| @@ -730,65 +772,26 @@ out: | |||
| 730 | } | 772 | } |
| 731 | EXPORT_SYMBOL(of_find_node_with_property); | 773 | EXPORT_SYMBOL(of_find_node_with_property); |
| 732 | 774 | ||
| 733 | static const struct of_device_id * | ||
| 734 | of_match_compatible(const struct of_device_id *matches, | ||
| 735 | const struct device_node *node) | ||
| 736 | { | ||
| 737 | const char *cp; | ||
| 738 | int cplen, l; | ||
| 739 | const struct of_device_id *m; | ||
| 740 | |||
| 741 | cp = __of_get_property(node, "compatible", &cplen); | ||
| 742 | while (cp && (cplen > 0)) { | ||
| 743 | m = matches; | ||
| 744 | while (m->name[0] || m->type[0] || m->compatible[0]) { | ||
| 745 | /* Only match for the entries without type and name */ | ||
| 746 | if (m->name[0] || m->type[0] || | ||
| 747 | of_compat_cmp(m->compatible, cp, | ||
| 748 | strlen(m->compatible))) | ||
| 749 | m++; | ||
| 750 | else | ||
| 751 | return m; | ||
| 752 | } | ||
| 753 | |||
| 754 | /* Get node's next compatible string */ | ||
| 755 | l = strlen(cp) + 1; | ||
| 756 | cp += l; | ||
| 757 | cplen -= l; | ||
| 758 | } | ||
| 759 | |||
| 760 | return NULL; | ||
| 761 | } | ||
| 762 | |||
| 763 | static | 775 | static |
| 764 | const struct of_device_id *__of_match_node(const struct of_device_id *matches, | 776 | const struct of_device_id *__of_match_node(const struct of_device_id *matches, |
| 765 | const struct device_node *node) | 777 | const struct device_node *node) |
| 766 | { | 778 | { |
| 767 | const struct of_device_id *m; | 779 | const struct of_device_id *best_match = NULL; |
| 780 | int score, best_score = 0; | ||
| 768 | 781 | ||
| 769 | if (!matches) | 782 | if (!matches) |
| 770 | return NULL; | 783 | return NULL; |
| 771 | 784 | ||
| 772 | m = of_match_compatible(matches, node); | 785 | for (; matches->name[0] || matches->type[0] || matches->compatible[0]; matches++) { |
| 773 | if (m) | 786 | score = __of_device_is_compatible(node, matches->compatible, |
| 774 | return m; | 787 | matches->type, matches->name); |
| 775 | 788 | if (score > best_score) { | |
| 776 | while (matches->name[0] || matches->type[0] || matches->compatible[0]) { | 789 | best_match = matches; |
| 777 | int match = 1; | 790 | best_score = score; |
| 778 | if (matches->name[0]) | 791 | } |
| 779 | match &= node->name | ||
| 780 | && !strcmp(matches->name, node->name); | ||
| 781 | if (matches->type[0]) | ||
| 782 | match &= node->type | ||
| 783 | && !strcmp(matches->type, node->type); | ||
| 784 | if (matches->compatible[0]) | ||
| 785 | match &= __of_device_is_compatible(node, | ||
| 786 | matches->compatible); | ||
| 787 | if (match) | ||
| 788 | return matches; | ||
| 789 | matches++; | ||
| 790 | } | 792 | } |
| 791 | return NULL; | 793 | |
| 794 | return best_match; | ||
| 792 | } | 795 | } |
| 793 | 796 | ||
| 794 | /** | 797 | /** |
| @@ -796,12 +799,7 @@ const struct of_device_id *__of_match_node(const struct of_device_id *matches, | |||
| 796 | * @matches: array of of device match structures to search in | 799 | * @matches: array of of device match structures to search in |
| 797 | * @node: the of device structure to match against | 800 | * @node: the of device structure to match against |
| 798 | * | 801 | * |
| 799 | * Low level utility function used by device matching. We have two ways | 802 | * Low level utility function used by device matching. |
| 800 | * of matching: | ||
| 801 | * - Try to find the best compatible match by comparing each compatible | ||
| 802 | * string of device node with all the given matches respectively. | ||
| 803 | * - If the above method failed, then try to match the compatible by using | ||
| 804 | * __of_device_is_compatible() besides the match in type and name. | ||
| 805 | */ | 803 | */ |
| 806 | const struct of_device_id *of_match_node(const struct of_device_id *matches, | 804 | const struct of_device_id *of_match_node(const struct of_device_id *matches, |
| 807 | const struct device_node *node) | 805 | const struct device_node *node) |
diff --git a/drivers/of/selftest.c b/drivers/of/selftest.c index e21012bde639..6643d1920985 100644 --- a/drivers/of/selftest.c +++ b/drivers/of/selftest.c | |||
| @@ -300,6 +300,72 @@ static void __init of_selftest_parse_interrupts_extended(void) | |||
| 300 | of_node_put(np); | 300 | of_node_put(np); |
| 301 | } | 301 | } |
| 302 | 302 | ||
| 303 | static struct of_device_id match_node_table[] = { | ||
| 304 | { .data = "A", .name = "name0", }, /* Name alone is lowest priority */ | ||
| 305 | { .data = "B", .type = "type1", }, /* followed by type alone */ | ||
| 306 | |||
| 307 | { .data = "Ca", .name = "name2", .type = "type1", }, /* followed by both together */ | ||
| 308 | { .data = "Cb", .name = "name2", }, /* Only match when type doesn't match */ | ||
| 309 | { .data = "Cc", .name = "name2", .type = "type2", }, | ||
| 310 | |||
| 311 | { .data = "E", .compatible = "compat3" }, | ||
| 312 | { .data = "G", .compatible = "compat2", }, | ||
| 313 | { .data = "H", .compatible = "compat2", .name = "name5", }, | ||
| 314 | { .data = "I", .compatible = "compat2", .type = "type1", }, | ||
| 315 | { .data = "J", .compatible = "compat2", .type = "type1", .name = "name8", }, | ||
| 316 | { .data = "K", .compatible = "compat2", .name = "name9", }, | ||
| 317 | {} | ||
| 318 | }; | ||
| 319 | |||
| 320 | static struct { | ||
| 321 | const char *path; | ||
| 322 | const char *data; | ||
| 323 | } match_node_tests[] = { | ||
| 324 | { .path = "/testcase-data/match-node/name0", .data = "A", }, | ||
| 325 | { .path = "/testcase-data/match-node/name1", .data = "B", }, | ||
| 326 | { .path = "/testcase-data/match-node/a/name2", .data = "Ca", }, | ||
| 327 | { .path = "/testcase-data/match-node/b/name2", .data = "Cb", }, | ||
| 328 | { .path = "/testcase-data/match-node/c/name2", .data = "Cc", }, | ||
| 329 | { .path = "/testcase-data/match-node/name3", .data = "E", }, | ||
| 330 | { .path = "/testcase-data/match-node/name4", .data = "G", }, | ||
| 331 | { .path = "/testcase-data/match-node/name5", .data = "H", }, | ||
| 332 | { .path = "/testcase-data/match-node/name6", .data = "G", }, | ||
| 333 | { .path = "/testcase-data/match-node/name7", .data = "I", }, | ||
| 334 | { .path = "/testcase-data/match-node/name8", .data = "J", }, | ||
| 335 | { .path = "/testcase-data/match-node/name9", .data = "K", }, | ||
| 336 | }; | ||
| 337 | |||
| 338 | static void __init of_selftest_match_node(void) | ||
| 339 | { | ||
| 340 | struct device_node *np; | ||
| 341 | const struct of_device_id *match; | ||
| 342 | int i; | ||
| 343 | |||
| 344 | for (i = 0; i < ARRAY_SIZE(match_node_tests); i++) { | ||
| 345 | np = of_find_node_by_path(match_node_tests[i].path); | ||
| 346 | if (!np) { | ||
| 347 | selftest(0, "missing testcase node %s\n", | ||
| 348 | match_node_tests[i].path); | ||
| 349 | continue; | ||
| 350 | } | ||
| 351 | |||
| 352 | match = of_match_node(match_node_table, np); | ||
| 353 | if (!match) { | ||
| 354 | selftest(0, "%s didn't match anything\n", | ||
| 355 | match_node_tests[i].path); | ||
| 356 | continue; | ||
| 357 | } | ||
| 358 | |||
| 359 | if (strcmp(match->data, match_node_tests[i].data) != 0) { | ||
| 360 | selftest(0, "%s got wrong match. expected %s, got %s\n", | ||
| 361 | match_node_tests[i].path, match_node_tests[i].data, | ||
| 362 | (const char *)match->data); | ||
| 363 | continue; | ||
| 364 | } | ||
| 365 | selftest(1, "passed"); | ||
| 366 | } | ||
| 367 | } | ||
| 368 | |||
| 303 | static int __init of_selftest(void) | 369 | static int __init of_selftest(void) |
| 304 | { | 370 | { |
| 305 | struct device_node *np; | 371 | struct device_node *np; |
| @@ -316,6 +382,7 @@ static int __init of_selftest(void) | |||
| 316 | of_selftest_property_match_string(); | 382 | of_selftest_property_match_string(); |
| 317 | of_selftest_parse_interrupts(); | 383 | of_selftest_parse_interrupts(); |
| 318 | of_selftest_parse_interrupts_extended(); | 384 | of_selftest_parse_interrupts_extended(); |
| 385 | of_selftest_match_node(); | ||
| 319 | pr_info("end of selftest - %i passed, %i failed\n", | 386 | pr_info("end of selftest - %i passed, %i failed\n", |
| 320 | selftest_results.passed, selftest_results.failed); | 387 | selftest_results.passed, selftest_results.failed); |
| 321 | return 0; | 388 | return 0; |
diff --git a/drivers/of/testcase-data/testcases.dtsi b/drivers/of/testcase-data/testcases.dtsi new file mode 100644 index 000000000000..3a5b75a8e4d7 --- /dev/null +++ b/drivers/of/testcase-data/testcases.dtsi | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #include "tests-phandle.dtsi" | ||
| 2 | #include "tests-interrupts.dtsi" | ||
| 3 | #include "tests-match.dtsi" | ||
diff --git a/arch/arm/boot/dts/testcases/tests-interrupts.dtsi b/drivers/of/testcase-data/tests-interrupts.dtsi index c843720bd3e5..c843720bd3e5 100644 --- a/arch/arm/boot/dts/testcases/tests-interrupts.dtsi +++ b/drivers/of/testcase-data/tests-interrupts.dtsi | |||
diff --git a/drivers/of/testcase-data/tests-match.dtsi b/drivers/of/testcase-data/tests-match.dtsi new file mode 100644 index 000000000000..c9e541129534 --- /dev/null +++ b/drivers/of/testcase-data/tests-match.dtsi | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | |||
| 2 | / { | ||
| 3 | testcase-data { | ||
| 4 | match-node { | ||
| 5 | name0 { }; | ||
| 6 | name1 { device_type = "type1"; }; | ||
| 7 | a { name2 { device_type = "type1"; }; }; | ||
| 8 | b { name2 { }; }; | ||
| 9 | c { name2 { device_type = "type2"; }; }; | ||
| 10 | name3 { compatible = "compat3"; }; | ||
| 11 | name4 { compatible = "compat2", "compat3"; }; | ||
| 12 | name5 { compatible = "compat2", "compat3"; }; | ||
| 13 | name6 { compatible = "compat1", "compat2", "compat3"; }; | ||
| 14 | name7 { compatible = "compat2"; device_type = "type1"; }; | ||
| 15 | name8 { compatible = "compat2"; device_type = "type1"; }; | ||
| 16 | name9 { compatible = "compat2"; }; | ||
| 17 | }; | ||
| 18 | }; | ||
| 19 | }; | ||
diff --git a/arch/arm/boot/dts/testcases/tests-phandle.dtsi b/drivers/of/testcase-data/tests-phandle.dtsi index 0007d3cd7dc2..0007d3cd7dc2 100644 --- a/arch/arm/boot/dts/testcases/tests-phandle.dtsi +++ b/drivers/of/testcase-data/tests-phandle.dtsi | |||
diff --git a/drivers/sbus/char/jsflash.c b/drivers/sbus/char/jsflash.c index 6b4678a7900a..4ccb5d869389 100644 --- a/drivers/sbus/char/jsflash.c +++ b/drivers/sbus/char/jsflash.c | |||
| @@ -507,7 +507,6 @@ static int jsflash_init(void) | |||
| 507 | } | 507 | } |
| 508 | 508 | ||
| 509 | /* Let us be really paranoid for modifications to probing code. */ | 509 | /* Let us be really paranoid for modifications to probing code. */ |
| 510 | /* extern enum sparc_cpu sparc_cpu_model; */ /* in <asm/system.h> */ | ||
| 511 | if (sparc_cpu_model != sun4m) { | 510 | if (sparc_cpu_model != sun4m) { |
| 512 | /* We must be on sun4m because we use MMU Bypass ASI. */ | 511 | /* We must be on sun4m because we use MMU Bypass ASI. */ |
| 513 | return -ENXIO; | 512 | return -ENXIO; |
diff --git a/drivers/watchdog/w83697hf_wdt.c b/drivers/watchdog/w83697hf_wdt.c index aaf2995d37f4..68b45fc9ba6a 100644 --- a/drivers/watchdog/w83697hf_wdt.c +++ b/drivers/watchdog/w83697hf_wdt.c | |||
| @@ -402,7 +402,7 @@ static int __init wdt_init(void) | |||
| 402 | 402 | ||
| 403 | if (!found) { | 403 | if (!found) { |
| 404 | pr_err("No W83697HF/HG could be found\n"); | 404 | pr_err("No W83697HF/HG could be found\n"); |
| 405 | ret = -EIO; | 405 | ret = -ENODEV; |
| 406 | goto out; | 406 | goto out; |
| 407 | } | 407 | } |
| 408 | 408 | ||
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index f35d5c953ff9..9ddfb8190ca1 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c | |||
| @@ -705,7 +705,6 @@ xfs_setattr_size( | |||
| 705 | { | 705 | { |
| 706 | struct xfs_mount *mp = ip->i_mount; | 706 | struct xfs_mount *mp = ip->i_mount; |
| 707 | struct inode *inode = VFS_I(ip); | 707 | struct inode *inode = VFS_I(ip); |
| 708 | int mask = iattr->ia_valid; | ||
| 709 | xfs_off_t oldsize, newsize; | 708 | xfs_off_t oldsize, newsize; |
| 710 | struct xfs_trans *tp; | 709 | struct xfs_trans *tp; |
| 711 | int error; | 710 | int error; |
| @@ -726,8 +725,8 @@ xfs_setattr_size( | |||
| 726 | 725 | ||
| 727 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL)); | 726 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL)); |
| 728 | ASSERT(S_ISREG(ip->i_d.di_mode)); | 727 | ASSERT(S_ISREG(ip->i_d.di_mode)); |
| 729 | ASSERT((mask & (ATTR_UID|ATTR_GID|ATTR_ATIME|ATTR_ATIME_SET| | 728 | ASSERT((iattr->ia_valid & (ATTR_UID|ATTR_GID|ATTR_ATIME|ATTR_ATIME_SET| |
| 730 | ATTR_MTIME_SET|ATTR_KILL_PRIV|ATTR_TIMES_SET)) == 0); | 729 | ATTR_MTIME_SET|ATTR_KILL_PRIV|ATTR_TIMES_SET)) == 0); |
| 731 | 730 | ||
| 732 | oldsize = inode->i_size; | 731 | oldsize = inode->i_size; |
| 733 | newsize = iattr->ia_size; | 732 | newsize = iattr->ia_size; |
| @@ -736,7 +735,7 @@ xfs_setattr_size( | |||
| 736 | * Short circuit the truncate case for zero length files. | 735 | * Short circuit the truncate case for zero length files. |
| 737 | */ | 736 | */ |
| 738 | if (newsize == 0 && oldsize == 0 && ip->i_d.di_nextents == 0) { | 737 | if (newsize == 0 && oldsize == 0 && ip->i_d.di_nextents == 0) { |
| 739 | if (!(mask & (ATTR_CTIME|ATTR_MTIME))) | 738 | if (!(iattr->ia_valid & (ATTR_CTIME|ATTR_MTIME))) |
| 740 | return 0; | 739 | return 0; |
| 741 | 740 | ||
| 742 | /* | 741 | /* |
| @@ -824,10 +823,11 @@ xfs_setattr_size( | |||
| 824 | * these flags set. For all other operations the VFS set these flags | 823 | * these flags set. For all other operations the VFS set these flags |
| 825 | * explicitly if it wants a timestamp update. | 824 | * explicitly if it wants a timestamp update. |
| 826 | */ | 825 | */ |
| 827 | if (newsize != oldsize && (!(mask & (ATTR_CTIME | ATTR_MTIME)))) { | 826 | if (newsize != oldsize && |
| 827 | !(iattr->ia_valid & (ATTR_CTIME | ATTR_MTIME))) { | ||
| 828 | iattr->ia_ctime = iattr->ia_mtime = | 828 | iattr->ia_ctime = iattr->ia_mtime = |
| 829 | current_fs_time(inode->i_sb); | 829 | current_fs_time(inode->i_sb); |
| 830 | mask |= ATTR_CTIME | ATTR_MTIME; | 830 | iattr->ia_valid |= ATTR_CTIME | ATTR_MTIME; |
| 831 | } | 831 | } |
| 832 | 832 | ||
| 833 | /* | 833 | /* |
| @@ -863,9 +863,9 @@ xfs_setattr_size( | |||
| 863 | xfs_inode_clear_eofblocks_tag(ip); | 863 | xfs_inode_clear_eofblocks_tag(ip); |
| 864 | } | 864 | } |
| 865 | 865 | ||
| 866 | if (mask & ATTR_MODE) | 866 | if (iattr->ia_valid & ATTR_MODE) |
| 867 | xfs_setattr_mode(ip, iattr); | 867 | xfs_setattr_mode(ip, iattr); |
| 868 | if (mask & (ATTR_ATIME|ATTR_CTIME|ATTR_MTIME)) | 868 | if (iattr->ia_valid & (ATTR_ATIME|ATTR_CTIME|ATTR_MTIME)) |
| 869 | xfs_setattr_time(ip, iattr); | 869 | xfs_setattr_time(ip, iattr); |
| 870 | 870 | ||
| 871 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | 871 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
diff --git a/fs/xfs/xfs_log_cil.c b/fs/xfs/xfs_log_cil.c index cdebd832c3db..4ef6fdbced78 100644 --- a/fs/xfs/xfs_log_cil.c +++ b/fs/xfs/xfs_log_cil.c | |||
| @@ -205,16 +205,25 @@ xlog_cil_insert_format_items( | |||
| 205 | /* | 205 | /* |
| 206 | * We 64-bit align the length of each iovec so that the start | 206 | * We 64-bit align the length of each iovec so that the start |
| 207 | * of the next one is naturally aligned. We'll need to | 207 | * of the next one is naturally aligned. We'll need to |
| 208 | * account for that slack space here. | 208 | * account for that slack space here. Then round nbytes up |
| 209 | * to 64-bit alignment so that the initial buffer alignment is | ||
| 210 | * easy to calculate and verify. | ||
| 209 | */ | 211 | */ |
| 210 | nbytes += niovecs * sizeof(uint64_t); | 212 | nbytes += niovecs * sizeof(uint64_t); |
| 213 | nbytes = round_up(nbytes, sizeof(uint64_t)); | ||
| 211 | 214 | ||
| 212 | /* grab the old item if it exists for reservation accounting */ | 215 | /* grab the old item if it exists for reservation accounting */ |
| 213 | old_lv = lip->li_lv; | 216 | old_lv = lip->li_lv; |
| 214 | 217 | ||
| 215 | /* calc buffer size */ | 218 | /* |
| 216 | buf_size = sizeof(struct xfs_log_vec) + nbytes + | 219 | * The data buffer needs to start 64-bit aligned, so round up |
| 217 | niovecs * sizeof(struct xfs_log_iovec); | 220 | * that space to ensure we can align it appropriately and not |
| 221 | * overrun the buffer. | ||
| 222 | */ | ||
| 223 | buf_size = nbytes + | ||
| 224 | round_up((sizeof(struct xfs_log_vec) + | ||
| 225 | niovecs * sizeof(struct xfs_log_iovec)), | ||
| 226 | sizeof(uint64_t)); | ||
| 218 | 227 | ||
| 219 | /* compare to existing item size */ | 228 | /* compare to existing item size */ |
| 220 | if (lip->li_lv && buf_size <= lip->li_lv->lv_size) { | 229 | if (lip->li_lv && buf_size <= lip->li_lv->lv_size) { |
| @@ -251,6 +260,8 @@ xlog_cil_insert_format_items( | |||
| 251 | /* The allocated data region lies beyond the iovec region */ | 260 | /* The allocated data region lies beyond the iovec region */ |
| 252 | lv->lv_buf_len = 0; | 261 | lv->lv_buf_len = 0; |
| 253 | lv->lv_buf = (char *)lv + buf_size - nbytes; | 262 | lv->lv_buf = (char *)lv + buf_size - nbytes; |
| 263 | ASSERT(IS_ALIGNED((unsigned long)lv->lv_buf, sizeof(uint64_t))); | ||
| 264 | |||
| 254 | lip->li_ops->iop_format(lip, lv); | 265 | lip->li_ops->iop_format(lip, lv); |
| 255 | insert: | 266 | insert: |
| 256 | ASSERT(lv->lv_buf_len <= nbytes); | 267 | ASSERT(lv->lv_buf_len <= nbytes); |
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index 02df7b408a26..f96c05669a9e 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c | |||
| @@ -282,22 +282,29 @@ xfs_readsb( | |||
| 282 | struct xfs_sb *sbp = &mp->m_sb; | 282 | struct xfs_sb *sbp = &mp->m_sb; |
| 283 | int error; | 283 | int error; |
| 284 | int loud = !(flags & XFS_MFSI_QUIET); | 284 | int loud = !(flags & XFS_MFSI_QUIET); |
| 285 | const struct xfs_buf_ops *buf_ops; | ||
| 285 | 286 | ||
| 286 | ASSERT(mp->m_sb_bp == NULL); | 287 | ASSERT(mp->m_sb_bp == NULL); |
| 287 | ASSERT(mp->m_ddev_targp != NULL); | 288 | ASSERT(mp->m_ddev_targp != NULL); |
| 288 | 289 | ||
| 289 | /* | 290 | /* |
| 291 | * For the initial read, we must guess at the sector | ||
| 292 | * size based on the block device. It's enough to | ||
| 293 | * get the sb_sectsize out of the superblock and | ||
| 294 | * then reread with the proper length. | ||
| 295 | * We don't verify it yet, because it may not be complete. | ||
| 296 | */ | ||
| 297 | sector_size = xfs_getsize_buftarg(mp->m_ddev_targp); | ||
| 298 | buf_ops = NULL; | ||
| 299 | |||
| 300 | /* | ||
| 290 | * Allocate a (locked) buffer to hold the superblock. | 301 | * Allocate a (locked) buffer to hold the superblock. |
| 291 | * This will be kept around at all times to optimize | 302 | * This will be kept around at all times to optimize |
| 292 | * access to the superblock. | 303 | * access to the superblock. |
| 293 | */ | 304 | */ |
| 294 | sector_size = xfs_getsize_buftarg(mp->m_ddev_targp); | ||
| 295 | |||
| 296 | reread: | 305 | reread: |
| 297 | bp = xfs_buf_read_uncached(mp->m_ddev_targp, XFS_SB_DADDR, | 306 | bp = xfs_buf_read_uncached(mp->m_ddev_targp, XFS_SB_DADDR, |
| 298 | BTOBB(sector_size), 0, | 307 | BTOBB(sector_size), 0, buf_ops); |
| 299 | loud ? &xfs_sb_buf_ops | ||
| 300 | : &xfs_sb_quiet_buf_ops); | ||
| 301 | if (!bp) { | 308 | if (!bp) { |
| 302 | if (loud) | 309 | if (loud) |
| 303 | xfs_warn(mp, "SB buffer read failed"); | 310 | xfs_warn(mp, "SB buffer read failed"); |
| @@ -328,12 +335,13 @@ reread: | |||
| 328 | } | 335 | } |
| 329 | 336 | ||
| 330 | /* | 337 | /* |
| 331 | * If device sector size is smaller than the superblock size, | 338 | * Re-read the superblock so the buffer is correctly sized, |
| 332 | * re-read the superblock so the buffer is correctly sized. | 339 | * and properly verified. |
| 333 | */ | 340 | */ |
| 334 | if (sector_size < sbp->sb_sectsize) { | 341 | if (buf_ops == NULL) { |
| 335 | xfs_buf_relse(bp); | 342 | xfs_buf_relse(bp); |
| 336 | sector_size = sbp->sb_sectsize; | 343 | sector_size = sbp->sb_sectsize; |
| 344 | buf_ops = loud ? &xfs_sb_buf_ops : &xfs_sb_quiet_buf_ops; | ||
| 337 | goto reread; | 345 | goto reread; |
| 338 | } | 346 | } |
| 339 | 347 | ||
diff --git a/fs/xfs/xfs_sb.c b/fs/xfs/xfs_sb.c index b7c9aea77f8f..1e116794bb66 100644 --- a/fs/xfs/xfs_sb.c +++ b/fs/xfs/xfs_sb.c | |||
| @@ -295,8 +295,7 @@ xfs_mount_validate_sb( | |||
| 295 | sbp->sb_dblocks == 0 || | 295 | sbp->sb_dblocks == 0 || |
| 296 | sbp->sb_dblocks > XFS_MAX_DBLOCKS(sbp) || | 296 | sbp->sb_dblocks > XFS_MAX_DBLOCKS(sbp) || |
| 297 | sbp->sb_dblocks < XFS_MIN_DBLOCKS(sbp))) { | 297 | sbp->sb_dblocks < XFS_MIN_DBLOCKS(sbp))) { |
| 298 | XFS_CORRUPTION_ERROR("SB sanity check failed", | 298 | xfs_notice(mp, "SB sanity check failed"); |
| 299 | XFS_ERRLEVEL_LOW, mp, sbp); | ||
| 300 | return XFS_ERROR(EFSCORRUPTED); | 299 | return XFS_ERROR(EFSCORRUPTED); |
| 301 | } | 300 | } |
| 302 | 301 | ||
| @@ -611,10 +610,10 @@ xfs_sb_read_verify( | |||
| 611 | XFS_SB_VERSION_5) || | 610 | XFS_SB_VERSION_5) || |
| 612 | dsb->sb_crc != 0)) { | 611 | dsb->sb_crc != 0)) { |
| 613 | 612 | ||
| 614 | if (!xfs_verify_cksum(bp->b_addr, be16_to_cpu(dsb->sb_sectsize), | 613 | if (!xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length), |
| 615 | offsetof(struct xfs_sb, sb_crc))) { | 614 | offsetof(struct xfs_sb, sb_crc))) { |
| 616 | /* Only fail bad secondaries on a known V5 filesystem */ | 615 | /* Only fail bad secondaries on a known V5 filesystem */ |
| 617 | if (bp->b_bn != XFS_SB_DADDR && | 616 | if (bp->b_bn == XFS_SB_DADDR || |
| 618 | xfs_sb_version_hascrc(&mp->m_sb)) { | 617 | xfs_sb_version_hascrc(&mp->m_sb)) { |
| 619 | error = EFSCORRUPTED; | 618 | error = EFSCORRUPTED; |
| 620 | goto out_error; | 619 | goto out_error; |
| @@ -625,7 +624,7 @@ xfs_sb_read_verify( | |||
| 625 | 624 | ||
| 626 | out_error: | 625 | out_error: |
| 627 | if (error) { | 626 | if (error) { |
| 628 | if (error != EWRONGFS) | 627 | if (error == EFSCORRUPTED) |
| 629 | XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, | 628 | XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, |
| 630 | mp, bp->b_addr); | 629 | mp, bp->b_addr); |
| 631 | xfs_buf_ioerror(bp, error); | 630 | xfs_buf_ioerror(bp, error); |
| @@ -644,7 +643,6 @@ xfs_sb_quiet_read_verify( | |||
| 644 | { | 643 | { |
| 645 | struct xfs_dsb *dsb = XFS_BUF_TO_SBP(bp); | 644 | struct xfs_dsb *dsb = XFS_BUF_TO_SBP(bp); |
| 646 | 645 | ||
| 647 | |||
| 648 | if (dsb->sb_magicnum == cpu_to_be32(XFS_SB_MAGIC)) { | 646 | if (dsb->sb_magicnum == cpu_to_be32(XFS_SB_MAGIC)) { |
| 649 | /* XFS filesystem, verify noisily! */ | 647 | /* XFS filesystem, verify noisily! */ |
| 650 | xfs_sb_read_verify(bp); | 648 | xfs_sb_read_verify(bp); |
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 49392ecbef17..79c059e70860 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
| @@ -152,6 +152,7 @@ ld_flags = $(LDFLAGS) $(ldflags-y) | |||
| 152 | dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \ | 152 | dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \ |
| 153 | -I$(srctree)/arch/$(SRCARCH)/boot/dts \ | 153 | -I$(srctree)/arch/$(SRCARCH)/boot/dts \ |
| 154 | -I$(srctree)/arch/$(SRCARCH)/boot/dts/include \ | 154 | -I$(srctree)/arch/$(SRCARCH)/boot/dts/include \ |
| 155 | -I$(srctree)/drivers/of/testcase-data \ | ||
| 155 | -undef -D__DTS__ | 156 | -undef -D__DTS__ |
| 156 | 157 | ||
| 157 | # Finds the multi-part object the current object will be linked into | 158 | # Finds the multi-part object the current object will be linked into |
diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c index 54d14793725a..46ecdbb9053f 100644 --- a/sound/pci/hda/patch_ca0132.c +++ b/sound/pci/hda/patch_ca0132.c | |||
| @@ -2662,60 +2662,6 @@ static bool dspload_wait_loaded(struct hda_codec *codec) | |||
| 2662 | } | 2662 | } |
| 2663 | 2663 | ||
| 2664 | /* | 2664 | /* |
| 2665 | * PCM stuffs | ||
| 2666 | */ | ||
| 2667 | static void ca0132_setup_stream(struct hda_codec *codec, hda_nid_t nid, | ||
| 2668 | u32 stream_tag, | ||
| 2669 | int channel_id, int format) | ||
| 2670 | { | ||
| 2671 | unsigned int oldval, newval; | ||
| 2672 | |||
| 2673 | if (!nid) | ||
| 2674 | return; | ||
| 2675 | |||
| 2676 | snd_printdd( | ||
| 2677 | "ca0132_setup_stream: NID=0x%x, stream=0x%x, " | ||
| 2678 | "channel=%d, format=0x%x\n", | ||
| 2679 | nid, stream_tag, channel_id, format); | ||
| 2680 | |||
| 2681 | /* update the format-id if changed */ | ||
| 2682 | oldval = snd_hda_codec_read(codec, nid, 0, | ||
| 2683 | AC_VERB_GET_STREAM_FORMAT, | ||
| 2684 | 0); | ||
| 2685 | if (oldval != format) { | ||
| 2686 | msleep(20); | ||
| 2687 | snd_hda_codec_write(codec, nid, 0, | ||
| 2688 | AC_VERB_SET_STREAM_FORMAT, | ||
| 2689 | format); | ||
| 2690 | } | ||
| 2691 | |||
| 2692 | oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0); | ||
| 2693 | newval = (stream_tag << 4) | channel_id; | ||
| 2694 | if (oldval != newval) { | ||
| 2695 | snd_hda_codec_write(codec, nid, 0, | ||
| 2696 | AC_VERB_SET_CHANNEL_STREAMID, | ||
| 2697 | newval); | ||
| 2698 | } | ||
| 2699 | } | ||
| 2700 | |||
| 2701 | static void ca0132_cleanup_stream(struct hda_codec *codec, hda_nid_t nid) | ||
| 2702 | { | ||
| 2703 | unsigned int val; | ||
| 2704 | |||
| 2705 | if (!nid) | ||
| 2706 | return; | ||
| 2707 | |||
| 2708 | snd_printdd(KERN_INFO "ca0132_cleanup_stream: NID=0x%x\n", nid); | ||
| 2709 | |||
| 2710 | val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0); | ||
| 2711 | if (!val) | ||
| 2712 | return; | ||
| 2713 | |||
| 2714 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0); | ||
| 2715 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0); | ||
| 2716 | } | ||
| 2717 | |||
| 2718 | /* | ||
| 2719 | * PCM callbacks | 2665 | * PCM callbacks |
| 2720 | */ | 2666 | */ |
| 2721 | static int ca0132_playback_pcm_prepare(struct hda_pcm_stream *hinfo, | 2667 | static int ca0132_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| @@ -2726,7 +2672,7 @@ static int ca0132_playback_pcm_prepare(struct hda_pcm_stream *hinfo, | |||
| 2726 | { | 2672 | { |
| 2727 | struct ca0132_spec *spec = codec->spec; | 2673 | struct ca0132_spec *spec = codec->spec; |
| 2728 | 2674 | ||
| 2729 | ca0132_setup_stream(codec, spec->dacs[0], stream_tag, 0, format); | 2675 | snd_hda_codec_setup_stream(codec, spec->dacs[0], stream_tag, 0, format); |
| 2730 | 2676 | ||
| 2731 | return 0; | 2677 | return 0; |
| 2732 | } | 2678 | } |
| @@ -2745,7 +2691,7 @@ static int ca0132_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, | |||
| 2745 | if (spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID]) | 2691 | if (spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID]) |
| 2746 | msleep(50); | 2692 | msleep(50); |
| 2747 | 2693 | ||
| 2748 | ca0132_cleanup_stream(codec, spec->dacs[0]); | 2694 | snd_hda_codec_cleanup_stream(codec, spec->dacs[0]); |
| 2749 | 2695 | ||
| 2750 | return 0; | 2696 | return 0; |
| 2751 | } | 2697 | } |
| @@ -2822,10 +2768,8 @@ static int ca0132_capture_pcm_prepare(struct hda_pcm_stream *hinfo, | |||
| 2822 | unsigned int format, | 2768 | unsigned int format, |
| 2823 | struct snd_pcm_substream *substream) | 2769 | struct snd_pcm_substream *substream) |
| 2824 | { | 2770 | { |
| 2825 | struct ca0132_spec *spec = codec->spec; | 2771 | snd_hda_codec_setup_stream(codec, hinfo->nid, |
| 2826 | 2772 | stream_tag, 0, format); | |
| 2827 | ca0132_setup_stream(codec, spec->adcs[substream->number], | ||
| 2828 | stream_tag, 0, format); | ||
| 2829 | 2773 | ||
| 2830 | return 0; | 2774 | return 0; |
| 2831 | } | 2775 | } |
| @@ -2839,7 +2783,7 @@ static int ca0132_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, | |||
| 2839 | if (spec->dsp_state == DSP_DOWNLOADING) | 2783 | if (spec->dsp_state == DSP_DOWNLOADING) |
| 2840 | return 0; | 2784 | return 0; |
| 2841 | 2785 | ||
| 2842 | ca0132_cleanup_stream(codec, hinfo->nid); | 2786 | snd_hda_codec_cleanup_stream(codec, hinfo->nid); |
| 2843 | return 0; | 2787 | return 0; |
| 2844 | } | 2788 | } |
| 2845 | 2789 | ||
| @@ -4742,6 +4686,8 @@ static int patch_ca0132(struct hda_codec *codec) | |||
| 4742 | return err; | 4686 | return err; |
| 4743 | 4687 | ||
| 4744 | codec->patch_ops = ca0132_patch_ops; | 4688 | codec->patch_ops = ca0132_patch_ops; |
| 4689 | codec->pcm_format_first = 1; | ||
| 4690 | codec->no_sticky_stream = 1; | ||
| 4745 | 4691 | ||
| 4746 | return 0; | 4692 | return 0; |
| 4747 | } | 4693 | } |
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index a9a83b85517a..6eb903cc6237 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
| @@ -4308,7 +4308,9 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { | |||
| 4308 | SND_PCI_QUIRK(0x1028, 0x0651, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), | 4308 | SND_PCI_QUIRK(0x1028, 0x0651, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), |
| 4309 | SND_PCI_QUIRK(0x1028, 0x0652, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), | 4309 | SND_PCI_QUIRK(0x1028, 0x0652, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), |
| 4310 | SND_PCI_QUIRK(0x1028, 0x0653, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), | 4310 | SND_PCI_QUIRK(0x1028, 0x0653, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), |
| 4311 | SND_PCI_QUIRK(0x1028, 0x0657, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), | ||
| 4311 | SND_PCI_QUIRK(0x1028, 0x0658, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), | 4312 | SND_PCI_QUIRK(0x1028, 0x0658, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), |
| 4313 | SND_PCI_QUIRK(0x1028, 0x065f, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), | ||
| 4312 | SND_PCI_QUIRK(0x1028, 0x0662, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), | 4314 | SND_PCI_QUIRK(0x1028, 0x0662, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), |
| 4313 | SND_PCI_QUIRK(0x1028, 0x15cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE), | 4315 | SND_PCI_QUIRK(0x1028, 0x15cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE), |
| 4314 | SND_PCI_QUIRK(0x1028, 0x15cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE), | 4316 | SND_PCI_QUIRK(0x1028, 0x15cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE), |
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 7311badf6a94..a2f11bf8155c 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c | |||
| @@ -83,6 +83,7 @@ enum { | |||
| 83 | STAC_DELL_M6_BOTH, | 83 | STAC_DELL_M6_BOTH, |
| 84 | STAC_DELL_EQ, | 84 | STAC_DELL_EQ, |
| 85 | STAC_ALIENWARE_M17X, | 85 | STAC_ALIENWARE_M17X, |
| 86 | STAC_92HD89XX_HP_FRONT_JACK, | ||
| 86 | STAC_92HD73XX_MODELS | 87 | STAC_92HD73XX_MODELS |
| 87 | }; | 88 | }; |
| 88 | 89 | ||
| @@ -1795,6 +1796,12 @@ static const struct hda_pintbl intel_dg45id_pin_configs[] = { | |||
| 1795 | {} | 1796 | {} |
| 1796 | }; | 1797 | }; |
| 1797 | 1798 | ||
| 1799 | static const struct hda_pintbl stac92hd89xx_hp_front_jack_pin_configs[] = { | ||
| 1800 | { 0x0a, 0x02214030 }, | ||
| 1801 | { 0x0b, 0x02A19010 }, | ||
| 1802 | {} | ||
| 1803 | }; | ||
| 1804 | |||
| 1798 | static void stac92hd73xx_fixup_ref(struct hda_codec *codec, | 1805 | static void stac92hd73xx_fixup_ref(struct hda_codec *codec, |
| 1799 | const struct hda_fixup *fix, int action) | 1806 | const struct hda_fixup *fix, int action) |
| 1800 | { | 1807 | { |
| @@ -1913,6 +1920,10 @@ static const struct hda_fixup stac92hd73xx_fixups[] = { | |||
| 1913 | [STAC_92HD73XX_NO_JD] = { | 1920 | [STAC_92HD73XX_NO_JD] = { |
| 1914 | .type = HDA_FIXUP_FUNC, | 1921 | .type = HDA_FIXUP_FUNC, |
| 1915 | .v.func = stac92hd73xx_fixup_no_jd, | 1922 | .v.func = stac92hd73xx_fixup_no_jd, |
| 1923 | }, | ||
| 1924 | [STAC_92HD89XX_HP_FRONT_JACK] = { | ||
| 1925 | .type = HDA_FIXUP_PINS, | ||
| 1926 | .v.pins = stac92hd89xx_hp_front_jack_pin_configs, | ||
| 1916 | } | 1927 | } |
| 1917 | }; | 1928 | }; |
| 1918 | 1929 | ||
| @@ -1973,6 +1984,8 @@ static const struct snd_pci_quirk stac92hd73xx_fixup_tbl[] = { | |||
| 1973 | "Alienware M17x", STAC_ALIENWARE_M17X), | 1984 | "Alienware M17x", STAC_ALIENWARE_M17X), |
| 1974 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0490, | 1985 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0490, |
| 1975 | "Alienware M17x R3", STAC_DELL_EQ), | 1986 | "Alienware M17x R3", STAC_DELL_EQ), |
| 1987 | SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2b17, | ||
| 1988 | "unknown HP", STAC_92HD89XX_HP_FRONT_JACK), | ||
| 1976 | {} /* terminator */ | 1989 | {} /* terminator */ |
| 1977 | }; | 1990 | }; |
| 1978 | 1991 | ||
diff --git a/sound/soc/blackfin/Kconfig b/sound/soc/blackfin/Kconfig index 54f74f8cbb75..4544d8eb1452 100644 --- a/sound/soc/blackfin/Kconfig +++ b/sound/soc/blackfin/Kconfig | |||
| @@ -11,7 +11,7 @@ config SND_BF5XX_I2S | |||
| 11 | 11 | ||
| 12 | config SND_BF5XX_SOC_SSM2602 | 12 | config SND_BF5XX_SOC_SSM2602 |
| 13 | tristate "SoC SSM2602 Audio Codec Add-On Card support" | 13 | tristate "SoC SSM2602 Audio Codec Add-On Card support" |
| 14 | depends on SND_BF5XX_I2S && (SPI_MASTER || I2C) | 14 | depends on SND_BF5XX_I2S && SND_SOC_I2C_AND_SPI |
| 15 | select SND_BF5XX_SOC_I2S if !BF60x | 15 | select SND_BF5XX_SOC_I2S if !BF60x |
| 16 | select SND_BF6XX_SOC_I2S if BF60x | 16 | select SND_BF6XX_SOC_I2S if BF60x |
| 17 | select SND_SOC_SSM2602 | 17 | select SND_SOC_SSM2602 |
| @@ -21,10 +21,9 @@ config SND_BF5XX_SOC_SSM2602 | |||
| 21 | 21 | ||
| 22 | config SND_SOC_BFIN_EVAL_ADAU1701 | 22 | config SND_SOC_BFIN_EVAL_ADAU1701 |
| 23 | tristate "Support for the EVAL-ADAU1701MINIZ board on Blackfin eval boards" | 23 | tristate "Support for the EVAL-ADAU1701MINIZ board on Blackfin eval boards" |
| 24 | depends on SND_BF5XX_I2S | 24 | depends on SND_BF5XX_I2S && I2C |
| 25 | select SND_BF5XX_SOC_I2S | 25 | select SND_BF5XX_SOC_I2S |
| 26 | select SND_SOC_ADAU1701 | 26 | select SND_SOC_ADAU1701 |
| 27 | select I2C | ||
| 28 | help | 27 | help |
| 29 | Say Y if you want to add support for the Analog Devices EVAL-ADAU1701MINIZ | 28 | Say Y if you want to add support for the Analog Devices EVAL-ADAU1701MINIZ |
| 30 | board connected to one of the Blackfin evaluation boards like the | 29 | board connected to one of the Blackfin evaluation boards like the |
| @@ -45,7 +44,7 @@ config SND_SOC_BFIN_EVAL_ADAU1373 | |||
| 45 | 44 | ||
| 46 | config SND_SOC_BFIN_EVAL_ADAV80X | 45 | config SND_SOC_BFIN_EVAL_ADAV80X |
| 47 | tristate "Support for the EVAL-ADAV80X boards on Blackfin eval boards" | 46 | tristate "Support for the EVAL-ADAV80X boards on Blackfin eval boards" |
| 48 | depends on SND_BF5XX_I2S && (SPI_MASTER || I2C) | 47 | depends on SND_BF5XX_I2S && SND_SOC_I2C_AND_SPI |
| 49 | select SND_BF5XX_SOC_I2S | 48 | select SND_BF5XX_SOC_I2S |
| 50 | select SND_SOC_ADAV80X | 49 | select SND_SOC_ADAV80X |
| 51 | help | 50 | help |
| @@ -58,7 +57,7 @@ config SND_SOC_BFIN_EVAL_ADAV80X | |||
| 58 | 57 | ||
| 59 | config SND_BF5XX_SOC_AD1836 | 58 | config SND_BF5XX_SOC_AD1836 |
| 60 | tristate "SoC AD1836 Audio support for BF5xx" | 59 | tristate "SoC AD1836 Audio support for BF5xx" |
| 61 | depends on SND_BF5XX_I2S | 60 | depends on SND_BF5XX_I2S && SPI_MASTER |
| 62 | select SND_BF5XX_SOC_I2S | 61 | select SND_BF5XX_SOC_I2S |
| 63 | select SND_SOC_AD1836 | 62 | select SND_SOC_AD1836 |
| 64 | help | 63 | help |
| @@ -66,7 +65,7 @@ config SND_BF5XX_SOC_AD1836 | |||
| 66 | 65 | ||
| 67 | config SND_BF5XX_SOC_AD193X | 66 | config SND_BF5XX_SOC_AD193X |
| 68 | tristate "SoC AD193X Audio support for Blackfin" | 67 | tristate "SoC AD193X Audio support for Blackfin" |
| 69 | depends on SND_BF5XX_I2S | 68 | depends on SND_BF5XX_I2S && SND_SOC_I2C_AND_SPI |
| 70 | select SND_BF5XX_SOC_I2S | 69 | select SND_BF5XX_SOC_I2S |
| 71 | select SND_SOC_AD193X | 70 | select SND_SOC_AD193X |
| 72 | help | 71 | help |
diff --git a/sound/soc/codecs/da9055.c b/sound/soc/codecs/da9055.c index 52b79a487ac7..422812613a28 100644 --- a/sound/soc/codecs/da9055.c +++ b/sound/soc/codecs/da9055.c | |||
| @@ -1523,8 +1523,15 @@ static int da9055_remove(struct i2c_client *client) | |||
| 1523 | return 0; | 1523 | return 0; |
| 1524 | } | 1524 | } |
| 1525 | 1525 | ||
| 1526 | /* | ||
| 1527 | * DO NOT change the device Ids. The naming is intentionally specific as both | ||
| 1528 | * the CODEC and PMIC parts of this chip are instantiated separately as I2C | ||
| 1529 | * devices (both have configurable I2C addresses, and are to all intents and | ||
| 1530 | * purposes separate). As a result there are specific DA9055 Ids for CODEC | ||
| 1531 | * and PMIC, which must be different to operate together. | ||
| 1532 | */ | ||
| 1526 | static const struct i2c_device_id da9055_i2c_id[] = { | 1533 | static const struct i2c_device_id da9055_i2c_id[] = { |
| 1527 | { "da9055", 0 }, | 1534 | { "da9055-codec", 0 }, |
| 1528 | { } | 1535 | { } |
| 1529 | }; | 1536 | }; |
| 1530 | MODULE_DEVICE_TABLE(i2c, da9055_i2c_id); | 1537 | MODULE_DEVICE_TABLE(i2c, da9055_i2c_id); |
| @@ -1532,7 +1539,7 @@ MODULE_DEVICE_TABLE(i2c, da9055_i2c_id); | |||
| 1532 | /* I2C codec control layer */ | 1539 | /* I2C codec control layer */ |
| 1533 | static struct i2c_driver da9055_i2c_driver = { | 1540 | static struct i2c_driver da9055_i2c_driver = { |
| 1534 | .driver = { | 1541 | .driver = { |
| 1535 | .name = "da9055", | 1542 | .name = "da9055-codec", |
| 1536 | .owner = THIS_MODULE, | 1543 | .owner = THIS_MODULE, |
| 1537 | }, | 1544 | }, |
| 1538 | .probe = da9055_i2c_probe, | 1545 | .probe = da9055_i2c_probe, |
diff --git a/sound/soc/codecs/max98090.c b/sound/soc/codecs/max98090.c index 51f9b3d16b41..9f714ea86613 100644 --- a/sound/soc/codecs/max98090.c +++ b/sound/soc/codecs/max98090.c | |||
| @@ -336,6 +336,7 @@ static bool max98090_readable_register(struct device *dev, unsigned int reg) | |||
| 336 | case M98090_REG_RECORD_TDM_SLOT: | 336 | case M98090_REG_RECORD_TDM_SLOT: |
| 337 | case M98090_REG_SAMPLE_RATE: | 337 | case M98090_REG_SAMPLE_RATE: |
| 338 | case M98090_REG_DMIC34_BIQUAD_BASE ... M98090_REG_DMIC34_BIQUAD_BASE + 0x0E: | 338 | case M98090_REG_DMIC34_BIQUAD_BASE ... M98090_REG_DMIC34_BIQUAD_BASE + 0x0E: |
| 339 | case M98090_REG_REVISION_ID: | ||
| 339 | return true; | 340 | return true; |
| 340 | default: | 341 | default: |
| 341 | return false; | 342 | return false; |
| @@ -1769,16 +1770,6 @@ static int max98090_set_bias_level(struct snd_soc_codec *codec, | |||
| 1769 | 1770 | ||
| 1770 | switch (level) { | 1771 | switch (level) { |
| 1771 | case SND_SOC_BIAS_ON: | 1772 | case SND_SOC_BIAS_ON: |
| 1772 | if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) { | ||
| 1773 | ret = regcache_sync(max98090->regmap); | ||
| 1774 | |||
| 1775 | if (ret != 0) { | ||
| 1776 | dev_err(codec->dev, | ||
| 1777 | "Failed to sync cache: %d\n", ret); | ||
| 1778 | return ret; | ||
| 1779 | } | ||
| 1780 | } | ||
| 1781 | |||
| 1782 | if (max98090->jack_state == M98090_JACK_STATE_HEADSET) { | 1773 | if (max98090->jack_state == M98090_JACK_STATE_HEADSET) { |
| 1783 | /* | 1774 | /* |
| 1784 | * Set to normal bias level. | 1775 | * Set to normal bias level. |
| @@ -1792,6 +1783,16 @@ static int max98090_set_bias_level(struct snd_soc_codec *codec, | |||
| 1792 | break; | 1783 | break; |
| 1793 | 1784 | ||
| 1794 | case SND_SOC_BIAS_STANDBY: | 1785 | case SND_SOC_BIAS_STANDBY: |
| 1786 | if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) { | ||
| 1787 | ret = regcache_sync(max98090->regmap); | ||
| 1788 | if (ret != 0) { | ||
| 1789 | dev_err(codec->dev, | ||
| 1790 | "Failed to sync cache: %d\n", ret); | ||
| 1791 | return ret; | ||
| 1792 | } | ||
| 1793 | } | ||
| 1794 | break; | ||
| 1795 | |||
| 1795 | case SND_SOC_BIAS_OFF: | 1796 | case SND_SOC_BIAS_OFF: |
| 1796 | /* Set internal pull-up to lowest power mode */ | 1797 | /* Set internal pull-up to lowest power mode */ |
| 1797 | snd_soc_update_bits(codec, M98090_REG_JACK_DETECT, | 1798 | snd_soc_update_bits(codec, M98090_REG_JACK_DETECT, |
diff --git a/sound/soc/codecs/rt5640.c b/sound/soc/codecs/rt5640.c index a3fb41179636..886924934aa5 100644 --- a/sound/soc/codecs/rt5640.c +++ b/sound/soc/codecs/rt5640.c | |||
| @@ -2093,6 +2093,7 @@ MODULE_DEVICE_TABLE(i2c, rt5640_i2c_id); | |||
| 2093 | #ifdef CONFIG_ACPI | 2093 | #ifdef CONFIG_ACPI |
| 2094 | static struct acpi_device_id rt5640_acpi_match[] = { | 2094 | static struct acpi_device_id rt5640_acpi_match[] = { |
| 2095 | { "INT33CA", 0 }, | 2095 | { "INT33CA", 0 }, |
| 2096 | { "10EC5640", 0 }, | ||
| 2096 | { }, | 2097 | { }, |
| 2097 | }; | 2098 | }; |
| 2098 | MODULE_DEVICE_TABLE(acpi, rt5640_acpi_match); | 2099 | MODULE_DEVICE_TABLE(acpi, rt5640_acpi_match); |
diff --git a/sound/soc/codecs/wm8993.c b/sound/soc/codecs/wm8993.c index 433d59a0f3ef..2ee23a39622c 100644 --- a/sound/soc/codecs/wm8993.c +++ b/sound/soc/codecs/wm8993.c | |||
| @@ -1562,7 +1562,6 @@ static int wm8993_remove(struct snd_soc_codec *codec) | |||
| 1562 | struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec); | 1562 | struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec); |
| 1563 | 1563 | ||
| 1564 | wm8993_set_bias_level(codec, SND_SOC_BIAS_OFF); | 1564 | wm8993_set_bias_level(codec, SND_SOC_BIAS_OFF); |
| 1565 | regulator_bulk_free(ARRAY_SIZE(wm8993->supplies), wm8993->supplies); | ||
| 1566 | return 0; | 1565 | return 0; |
| 1567 | } | 1566 | } |
| 1568 | 1567 | ||
diff --git a/sound/soc/davinci/davinci-evm.c b/sound/soc/davinci/davinci-evm.c index 70ff3772079f..5e3bc3c6801a 100644 --- a/sound/soc/davinci/davinci-evm.c +++ b/sound/soc/davinci/davinci-evm.c | |||
| @@ -399,6 +399,7 @@ static struct platform_driver davinci_evm_driver = { | |||
| 399 | .driver = { | 399 | .driver = { |
| 400 | .name = "davinci_evm", | 400 | .name = "davinci_evm", |
| 401 | .owner = THIS_MODULE, | 401 | .owner = THIS_MODULE, |
| 402 | .pm = &snd_soc_pm_ops, | ||
| 402 | .of_match_table = of_match_ptr(davinci_evm_dt_ids), | 403 | .of_match_table = of_match_ptr(davinci_evm_dt_ids), |
| 403 | }, | 404 | }, |
| 404 | }; | 405 | }; |
diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c index b7858bfa0295..670afa29e30d 100644 --- a/sound/soc/davinci/davinci-mcasp.c +++ b/sound/soc/davinci/davinci-mcasp.c | |||
| @@ -263,7 +263,9 @@ static int davinci_mcasp_set_dai_fmt(struct snd_soc_dai *cpu_dai, | |||
| 263 | unsigned int fmt) | 263 | unsigned int fmt) |
| 264 | { | 264 | { |
| 265 | struct davinci_mcasp *mcasp = snd_soc_dai_get_drvdata(cpu_dai); | 265 | struct davinci_mcasp *mcasp = snd_soc_dai_get_drvdata(cpu_dai); |
| 266 | int ret = 0; | ||
| 266 | 267 | ||
| 268 | pm_runtime_get_sync(mcasp->dev); | ||
| 267 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { | 269 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 268 | case SND_SOC_DAIFMT_DSP_B: | 270 | case SND_SOC_DAIFMT_DSP_B: |
| 269 | case SND_SOC_DAIFMT_AC97: | 271 | case SND_SOC_DAIFMT_AC97: |
| @@ -317,7 +319,8 @@ static int davinci_mcasp_set_dai_fmt(struct snd_soc_dai *cpu_dai, | |||
| 317 | break; | 319 | break; |
| 318 | 320 | ||
| 319 | default: | 321 | default: |
| 320 | return -EINVAL; | 322 | ret = -EINVAL; |
| 323 | goto out; | ||
| 321 | } | 324 | } |
| 322 | 325 | ||
| 323 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { | 326 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| @@ -354,10 +357,12 @@ static int davinci_mcasp_set_dai_fmt(struct snd_soc_dai *cpu_dai, | |||
| 354 | break; | 357 | break; |
| 355 | 358 | ||
| 356 | default: | 359 | default: |
| 357 | return -EINVAL; | 360 | ret = -EINVAL; |
| 361 | break; | ||
| 358 | } | 362 | } |
| 359 | 363 | out: | |
| 360 | return 0; | 364 | pm_runtime_put_sync(mcasp->dev); |
| 365 | return ret; | ||
| 361 | } | 366 | } |
| 362 | 367 | ||
| 363 | static int davinci_mcasp_set_clkdiv(struct snd_soc_dai *dai, int div_id, int div) | 368 | static int davinci_mcasp_set_clkdiv(struct snd_soc_dai *dai, int div_id, int div) |
| @@ -448,7 +453,7 @@ static int davinci_config_channel_size(struct davinci_mcasp *mcasp, | |||
| 448 | return 0; | 453 | return 0; |
| 449 | } | 454 | } |
| 450 | 455 | ||
| 451 | static int davinci_hw_common_param(struct davinci_mcasp *mcasp, int stream, | 456 | static int mcasp_common_hw_param(struct davinci_mcasp *mcasp, int stream, |
| 452 | int channels) | 457 | int channels) |
| 453 | { | 458 | { |
| 454 | int i; | 459 | int i; |
| @@ -524,12 +529,18 @@ static int davinci_hw_common_param(struct davinci_mcasp *mcasp, int stream, | |||
| 524 | return 0; | 529 | return 0; |
| 525 | } | 530 | } |
| 526 | 531 | ||
| 527 | static void davinci_hw_param(struct davinci_mcasp *mcasp, int stream) | 532 | static int mcasp_i2s_hw_param(struct davinci_mcasp *mcasp, int stream) |
| 528 | { | 533 | { |
| 529 | int i, active_slots; | 534 | int i, active_slots; |
| 530 | u32 mask = 0; | 535 | u32 mask = 0; |
| 531 | u32 busel = 0; | 536 | u32 busel = 0; |
| 532 | 537 | ||
| 538 | if ((mcasp->tdm_slots < 2) || (mcasp->tdm_slots > 32)) { | ||
| 539 | dev_err(mcasp->dev, "tdm slot %d not supported\n", | ||
| 540 | mcasp->tdm_slots); | ||
| 541 | return -EINVAL; | ||
| 542 | } | ||
| 543 | |||
| 533 | active_slots = (mcasp->tdm_slots > 31) ? 32 : mcasp->tdm_slots; | 544 | active_slots = (mcasp->tdm_slots > 31) ? 32 : mcasp->tdm_slots; |
| 534 | for (i = 0; i < active_slots; i++) | 545 | for (i = 0; i < active_slots; i++) |
| 535 | mask |= (1 << i); | 546 | mask |= (1 << i); |
| @@ -539,35 +550,21 @@ static void davinci_hw_param(struct davinci_mcasp *mcasp, int stream) | |||
| 539 | if (!mcasp->dat_port) | 550 | if (!mcasp->dat_port) |
| 540 | busel = TXSEL; | 551 | busel = TXSEL; |
| 541 | 552 | ||
| 542 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { | 553 | mcasp_set_reg(mcasp, DAVINCI_MCASP_TXTDM_REG, mask); |
| 543 | /* bit stream is MSB first with no delay */ | 554 | mcasp_set_bits(mcasp, DAVINCI_MCASP_TXFMT_REG, busel | TXORD); |
| 544 | /* DSP_B mode */ | 555 | mcasp_mod_bits(mcasp, DAVINCI_MCASP_TXFMCTL_REG, |
| 545 | mcasp_set_reg(mcasp, DAVINCI_MCASP_TXTDM_REG, mask); | 556 | FSXMOD(mcasp->tdm_slots), FSXMOD(0x1FF)); |
| 546 | mcasp_set_bits(mcasp, DAVINCI_MCASP_TXFMT_REG, busel | TXORD); | 557 | |
| 547 | 558 | mcasp_set_reg(mcasp, DAVINCI_MCASP_RXTDM_REG, mask); | |
| 548 | if ((mcasp->tdm_slots >= 2) && (mcasp->tdm_slots <= 32)) | 559 | mcasp_set_bits(mcasp, DAVINCI_MCASP_RXFMT_REG, busel | RXORD); |
| 549 | mcasp_mod_bits(mcasp, DAVINCI_MCASP_TXFMCTL_REG, | 560 | mcasp_mod_bits(mcasp, DAVINCI_MCASP_RXFMCTL_REG, |
| 550 | FSXMOD(mcasp->tdm_slots), FSXMOD(0x1FF)); | 561 | FSRMOD(mcasp->tdm_slots), FSRMOD(0x1FF)); |
| 551 | else | 562 | |
| 552 | printk(KERN_ERR "playback tdm slot %d not supported\n", | 563 | return 0; |
| 553 | mcasp->tdm_slots); | ||
| 554 | } else { | ||
| 555 | /* bit stream is MSB first with no delay */ | ||
| 556 | /* DSP_B mode */ | ||
| 557 | mcasp_set_bits(mcasp, DAVINCI_MCASP_RXFMT_REG, busel | RXORD); | ||
| 558 | mcasp_set_reg(mcasp, DAVINCI_MCASP_RXTDM_REG, mask); | ||
| 559 | |||
| 560 | if ((mcasp->tdm_slots >= 2) && (mcasp->tdm_slots <= 32)) | ||
| 561 | mcasp_mod_bits(mcasp, DAVINCI_MCASP_RXFMCTL_REG, | ||
| 562 | FSRMOD(mcasp->tdm_slots), FSRMOD(0x1FF)); | ||
| 563 | else | ||
| 564 | printk(KERN_ERR "capture tdm slot %d not supported\n", | ||
| 565 | mcasp->tdm_slots); | ||
| 566 | } | ||
| 567 | } | 564 | } |
| 568 | 565 | ||
| 569 | /* S/PDIF */ | 566 | /* S/PDIF */ |
| 570 | static void davinci_hw_dit_param(struct davinci_mcasp *mcasp) | 567 | static int mcasp_dit_hw_param(struct davinci_mcasp *mcasp) |
| 571 | { | 568 | { |
| 572 | /* Set the TX format : 24 bit right rotation, 32 bit slot, Pad 0 | 569 | /* Set the TX format : 24 bit right rotation, 32 bit slot, Pad 0 |
| 573 | and LSB first */ | 570 | and LSB first */ |
| @@ -589,6 +586,8 @@ static void davinci_hw_dit_param(struct davinci_mcasp *mcasp) | |||
| 589 | 586 | ||
| 590 | /* Enable the DIT */ | 587 | /* Enable the DIT */ |
| 591 | mcasp_set_bits(mcasp, DAVINCI_MCASP_TXDITCTL_REG, DITEN); | 588 | mcasp_set_bits(mcasp, DAVINCI_MCASP_TXDITCTL_REG, DITEN); |
| 589 | |||
| 590 | return 0; | ||
| 592 | } | 591 | } |
| 593 | 592 | ||
| 594 | static int davinci_mcasp_hw_params(struct snd_pcm_substream *substream, | 593 | static int davinci_mcasp_hw_params(struct snd_pcm_substream *substream, |
| @@ -605,13 +604,14 @@ static int davinci_mcasp_hw_params(struct snd_pcm_substream *substream, | |||
| 605 | u8 slots = mcasp->tdm_slots; | 604 | u8 slots = mcasp->tdm_slots; |
| 606 | u8 active_serializers; | 605 | u8 active_serializers; |
| 607 | int channels; | 606 | int channels; |
| 607 | int ret; | ||
| 608 | struct snd_interval *pcm_channels = hw_param_interval(params, | 608 | struct snd_interval *pcm_channels = hw_param_interval(params, |
| 609 | SNDRV_PCM_HW_PARAM_CHANNELS); | 609 | SNDRV_PCM_HW_PARAM_CHANNELS); |
| 610 | channels = pcm_channels->min; | 610 | channels = pcm_channels->min; |
| 611 | 611 | ||
| 612 | active_serializers = (channels + slots - 1) / slots; | 612 | active_serializers = (channels + slots - 1) / slots; |
| 613 | 613 | ||
| 614 | if (davinci_hw_common_param(mcasp, substream->stream, channels) == -EINVAL) | 614 | if (mcasp_common_hw_param(mcasp, substream->stream, channels) == -EINVAL) |
| 615 | return -EINVAL; | 615 | return -EINVAL; |
| 616 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | 616 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 617 | fifo_level = mcasp->txnumevt * active_serializers; | 617 | fifo_level = mcasp->txnumevt * active_serializers; |
| @@ -619,9 +619,12 @@ static int davinci_mcasp_hw_params(struct snd_pcm_substream *substream, | |||
| 619 | fifo_level = mcasp->rxnumevt * active_serializers; | 619 | fifo_level = mcasp->rxnumevt * active_serializers; |
| 620 | 620 | ||
| 621 | if (mcasp->op_mode == DAVINCI_MCASP_DIT_MODE) | 621 | if (mcasp->op_mode == DAVINCI_MCASP_DIT_MODE) |
| 622 | davinci_hw_dit_param(mcasp); | 622 | ret = mcasp_dit_hw_param(mcasp); |
| 623 | else | 623 | else |
| 624 | davinci_hw_param(mcasp, substream->stream); | 624 | ret = mcasp_i2s_hw_param(mcasp, substream->stream); |
| 625 | |||
| 626 | if (ret) | ||
| 627 | return ret; | ||
| 625 | 628 | ||
| 626 | switch (params_format(params)) { | 629 | switch (params_format(params)) { |
| 627 | case SNDRV_PCM_FORMAT_U8: | 630 | case SNDRV_PCM_FORMAT_U8: |
| @@ -678,19 +681,9 @@ static int davinci_mcasp_trigger(struct snd_pcm_substream *substream, | |||
| 678 | case SNDRV_PCM_TRIGGER_RESUME: | 681 | case SNDRV_PCM_TRIGGER_RESUME: |
| 679 | case SNDRV_PCM_TRIGGER_START: | 682 | case SNDRV_PCM_TRIGGER_START: |
| 680 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: | 683 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 681 | ret = pm_runtime_get_sync(mcasp->dev); | ||
| 682 | if (IS_ERR_VALUE(ret)) | ||
| 683 | dev_err(mcasp->dev, "pm_runtime_get_sync() failed\n"); | ||
| 684 | davinci_mcasp_start(mcasp, substream->stream); | 684 | davinci_mcasp_start(mcasp, substream->stream); |
| 685 | break; | 685 | break; |
| 686 | |||
| 687 | case SNDRV_PCM_TRIGGER_SUSPEND: | 686 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 688 | davinci_mcasp_stop(mcasp, substream->stream); | ||
| 689 | ret = pm_runtime_put_sync(mcasp->dev); | ||
| 690 | if (IS_ERR_VALUE(ret)) | ||
| 691 | dev_err(mcasp->dev, "pm_runtime_put_sync() failed\n"); | ||
| 692 | break; | ||
| 693 | |||
| 694 | case SNDRV_PCM_TRIGGER_STOP: | 687 | case SNDRV_PCM_TRIGGER_STOP: |
| 695 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: | 688 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 696 | davinci_mcasp_stop(mcasp, substream->stream); | 689 | davinci_mcasp_stop(mcasp, substream->stream); |
diff --git a/sound/soc/fsl/fsl_esai.c b/sound/soc/fsl/fsl_esai.c index d0c72ed261e7..c84026c99134 100644 --- a/sound/soc/fsl/fsl_esai.c +++ b/sound/soc/fsl/fsl_esai.c | |||
| @@ -326,7 +326,7 @@ static int fsl_esai_set_dai_tdm_slot(struct snd_soc_dai *dai, u32 tx_mask, | |||
| 326 | regmap_update_bits(esai_priv->regmap, REG_ESAI_TSMA, | 326 | regmap_update_bits(esai_priv->regmap, REG_ESAI_TSMA, |
| 327 | ESAI_xSMA_xS_MASK, ESAI_xSMA_xS(tx_mask)); | 327 | ESAI_xSMA_xS_MASK, ESAI_xSMA_xS(tx_mask)); |
| 328 | regmap_update_bits(esai_priv->regmap, REG_ESAI_TSMB, | 328 | regmap_update_bits(esai_priv->regmap, REG_ESAI_TSMB, |
| 329 | ESAI_xSMA_xS_MASK, ESAI_xSMB_xS(tx_mask)); | 329 | ESAI_xSMB_xS_MASK, ESAI_xSMB_xS(tx_mask)); |
| 330 | 330 | ||
| 331 | regmap_update_bits(esai_priv->regmap, REG_ESAI_RCCR, | 331 | regmap_update_bits(esai_priv->regmap, REG_ESAI_RCCR, |
| 332 | ESAI_xCCR_xDC_MASK, ESAI_xCCR_xDC(slots)); | 332 | ESAI_xCCR_xDC_MASK, ESAI_xCCR_xDC(slots)); |
| @@ -334,7 +334,7 @@ static int fsl_esai_set_dai_tdm_slot(struct snd_soc_dai *dai, u32 tx_mask, | |||
| 334 | regmap_update_bits(esai_priv->regmap, REG_ESAI_RSMA, | 334 | regmap_update_bits(esai_priv->regmap, REG_ESAI_RSMA, |
| 335 | ESAI_xSMA_xS_MASK, ESAI_xSMA_xS(rx_mask)); | 335 | ESAI_xSMA_xS_MASK, ESAI_xSMA_xS(rx_mask)); |
| 336 | regmap_update_bits(esai_priv->regmap, REG_ESAI_RSMB, | 336 | regmap_update_bits(esai_priv->regmap, REG_ESAI_RSMB, |
| 337 | ESAI_xSMA_xS_MASK, ESAI_xSMB_xS(rx_mask)); | 337 | ESAI_xSMB_xS_MASK, ESAI_xSMB_xS(rx_mask)); |
| 338 | 338 | ||
| 339 | esai_priv->slot_width = slot_width; | 339 | esai_priv->slot_width = slot_width; |
| 340 | 340 | ||
diff --git a/sound/soc/fsl/fsl_esai.h b/sound/soc/fsl/fsl_esai.h index 9c9f957fcae1..75e14033e8d8 100644 --- a/sound/soc/fsl/fsl_esai.h +++ b/sound/soc/fsl/fsl_esai.h | |||
| @@ -322,7 +322,7 @@ | |||
| 322 | #define ESAI_xSMB_xS_SHIFT 0 | 322 | #define ESAI_xSMB_xS_SHIFT 0 |
| 323 | #define ESAI_xSMB_xS_WIDTH 16 | 323 | #define ESAI_xSMB_xS_WIDTH 16 |
| 324 | #define ESAI_xSMB_xS_MASK (((1 << ESAI_xSMB_xS_WIDTH) - 1) << ESAI_xSMB_xS_SHIFT) | 324 | #define ESAI_xSMB_xS_MASK (((1 << ESAI_xSMB_xS_WIDTH) - 1) << ESAI_xSMB_xS_SHIFT) |
| 325 | #define ESAI_xSMB_xS(v) (((v) >> ESAI_xSMA_xS_WIDTH) & ESAI_xSMA_xS_MASK) | 325 | #define ESAI_xSMB_xS(v) (((v) >> ESAI_xSMA_xS_WIDTH) & ESAI_xSMB_xS_MASK) |
| 326 | 326 | ||
| 327 | /* Port C Direction Register -- REG_ESAI_PRRC 0xF8 */ | 327 | /* Port C Direction Register -- REG_ESAI_PRRC 0xF8 */ |
| 328 | #define ESAI_PRRC_PDC_SHIFT 0 | 328 | #define ESAI_PRRC_PDC_SHIFT 0 |
diff --git a/sound/soc/fsl/imx-mc13783.c b/sound/soc/fsl/imx-mc13783.c index 79cee782dbbf..a2fd7321b5a9 100644 --- a/sound/soc/fsl/imx-mc13783.c +++ b/sound/soc/fsl/imx-mc13783.c | |||
| @@ -160,7 +160,6 @@ static struct platform_driver imx_mc13783_audio_driver = { | |||
| 160 | .driver = { | 160 | .driver = { |
| 161 | .name = "imx_mc13783", | 161 | .name = "imx_mc13783", |
| 162 | .owner = THIS_MODULE, | 162 | .owner = THIS_MODULE, |
| 163 | .pm = &snd_soc_pm_ops, | ||
| 164 | }, | 163 | }, |
| 165 | .probe = imx_mc13783_probe, | 164 | .probe = imx_mc13783_probe, |
| 166 | .remove = imx_mc13783_remove | 165 | .remove = imx_mc13783_remove |
diff --git a/sound/soc/fsl/imx-sgtl5000.c b/sound/soc/fsl/imx-sgtl5000.c index f2beae78969f..1cb22dd034eb 100644 --- a/sound/soc/fsl/imx-sgtl5000.c +++ b/sound/soc/fsl/imx-sgtl5000.c | |||
| @@ -33,8 +33,7 @@ struct imx_sgtl5000_data { | |||
| 33 | 33 | ||
| 34 | static int imx_sgtl5000_dai_init(struct snd_soc_pcm_runtime *rtd) | 34 | static int imx_sgtl5000_dai_init(struct snd_soc_pcm_runtime *rtd) |
| 35 | { | 35 | { |
| 36 | struct imx_sgtl5000_data *data = container_of(rtd->card, | 36 | struct imx_sgtl5000_data *data = snd_soc_card_get_drvdata(rtd->card); |
| 37 | struct imx_sgtl5000_data, card); | ||
| 38 | struct device *dev = rtd->card->dev; | 37 | struct device *dev = rtd->card->dev; |
| 39 | int ret; | 38 | int ret; |
| 40 | 39 | ||
| @@ -159,13 +158,15 @@ static int imx_sgtl5000_probe(struct platform_device *pdev) | |||
| 159 | data->card.dapm_widgets = imx_sgtl5000_dapm_widgets; | 158 | data->card.dapm_widgets = imx_sgtl5000_dapm_widgets; |
| 160 | data->card.num_dapm_widgets = ARRAY_SIZE(imx_sgtl5000_dapm_widgets); | 159 | data->card.num_dapm_widgets = ARRAY_SIZE(imx_sgtl5000_dapm_widgets); |
| 161 | 160 | ||
| 161 | platform_set_drvdata(pdev, &data->card); | ||
| 162 | snd_soc_card_set_drvdata(&data->card, data); | ||
| 163 | |||
| 162 | ret = devm_snd_soc_register_card(&pdev->dev, &data->card); | 164 | ret = devm_snd_soc_register_card(&pdev->dev, &data->card); |
| 163 | if (ret) { | 165 | if (ret) { |
| 164 | dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret); | 166 | dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret); |
| 165 | goto fail; | 167 | goto fail; |
| 166 | } | 168 | } |
| 167 | 169 | ||
| 168 | platform_set_drvdata(pdev, data); | ||
| 169 | of_node_put(ssi_np); | 170 | of_node_put(ssi_np); |
| 170 | of_node_put(codec_np); | 171 | of_node_put(codec_np); |
| 171 | 172 | ||
| @@ -184,7 +185,8 @@ fail: | |||
| 184 | 185 | ||
| 185 | static int imx_sgtl5000_remove(struct platform_device *pdev) | 186 | static int imx_sgtl5000_remove(struct platform_device *pdev) |
| 186 | { | 187 | { |
| 187 | struct imx_sgtl5000_data *data = platform_get_drvdata(pdev); | 188 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 189 | struct imx_sgtl5000_data *data = snd_soc_card_get_drvdata(card); | ||
| 188 | 190 | ||
| 189 | clk_put(data->codec_clk); | 191 | clk_put(data->codec_clk); |
| 190 | 192 | ||
diff --git a/sound/soc/fsl/imx-wm8962.c b/sound/soc/fsl/imx-wm8962.c index 3fd76bc391de..3a3d17ce6ba4 100644 --- a/sound/soc/fsl/imx-wm8962.c +++ b/sound/soc/fsl/imx-wm8962.c | |||
| @@ -71,7 +71,7 @@ static int imx_wm8962_set_bias_level(struct snd_soc_card *card, | |||
| 71 | { | 71 | { |
| 72 | struct snd_soc_dai *codec_dai = card->rtd[0].codec_dai; | 72 | struct snd_soc_dai *codec_dai = card->rtd[0].codec_dai; |
| 73 | struct imx_priv *priv = &card_priv; | 73 | struct imx_priv *priv = &card_priv; |
| 74 | struct imx_wm8962_data *data = platform_get_drvdata(priv->pdev); | 74 | struct imx_wm8962_data *data = snd_soc_card_get_drvdata(card); |
| 75 | struct device *dev = &priv->pdev->dev; | 75 | struct device *dev = &priv->pdev->dev; |
| 76 | unsigned int pll_out; | 76 | unsigned int pll_out; |
| 77 | int ret; | 77 | int ret; |
| @@ -137,7 +137,7 @@ static int imx_wm8962_late_probe(struct snd_soc_card *card) | |||
| 137 | { | 137 | { |
| 138 | struct snd_soc_dai *codec_dai = card->rtd[0].codec_dai; | 138 | struct snd_soc_dai *codec_dai = card->rtd[0].codec_dai; |
| 139 | struct imx_priv *priv = &card_priv; | 139 | struct imx_priv *priv = &card_priv; |
| 140 | struct imx_wm8962_data *data = platform_get_drvdata(priv->pdev); | 140 | struct imx_wm8962_data *data = snd_soc_card_get_drvdata(card); |
| 141 | struct device *dev = &priv->pdev->dev; | 141 | struct device *dev = &priv->pdev->dev; |
| 142 | int ret; | 142 | int ret; |
| 143 | 143 | ||
| @@ -264,13 +264,15 @@ static int imx_wm8962_probe(struct platform_device *pdev) | |||
| 264 | data->card.late_probe = imx_wm8962_late_probe; | 264 | data->card.late_probe = imx_wm8962_late_probe; |
| 265 | data->card.set_bias_level = imx_wm8962_set_bias_level; | 265 | data->card.set_bias_level = imx_wm8962_set_bias_level; |
| 266 | 266 | ||
| 267 | platform_set_drvdata(pdev, &data->card); | ||
| 268 | snd_soc_card_set_drvdata(&data->card, data); | ||
| 269 | |||
| 267 | ret = devm_snd_soc_register_card(&pdev->dev, &data->card); | 270 | ret = devm_snd_soc_register_card(&pdev->dev, &data->card); |
| 268 | if (ret) { | 271 | if (ret) { |
| 269 | dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret); | 272 | dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret); |
| 270 | goto clk_fail; | 273 | goto clk_fail; |
| 271 | } | 274 | } |
| 272 | 275 | ||
| 273 | platform_set_drvdata(pdev, data); | ||
| 274 | of_node_put(ssi_np); | 276 | of_node_put(ssi_np); |
| 275 | of_node_put(codec_np); | 277 | of_node_put(codec_np); |
| 276 | 278 | ||
| @@ -289,7 +291,8 @@ fail: | |||
| 289 | 291 | ||
| 290 | static int imx_wm8962_remove(struct platform_device *pdev) | 292 | static int imx_wm8962_remove(struct platform_device *pdev) |
| 291 | { | 293 | { |
| 292 | struct imx_wm8962_data *data = platform_get_drvdata(pdev); | 294 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 295 | struct imx_wm8962_data *data = snd_soc_card_get_drvdata(card); | ||
| 293 | 296 | ||
| 294 | if (!IS_ERR(data->codec_clk)) | 297 | if (!IS_ERR(data->codec_clk)) |
| 295 | clk_disable_unprepare(data->codec_clk); | 298 | clk_disable_unprepare(data->codec_clk); |
diff --git a/sound/soc/samsung/Kconfig b/sound/soc/samsung/Kconfig index 454f41cfc828..350757400391 100644 --- a/sound/soc/samsung/Kconfig +++ b/sound/soc/samsung/Kconfig | |||
| @@ -59,7 +59,7 @@ config SND_SOC_SAMSUNG_JIVE_WM8750 | |||
| 59 | select SND_SOC_WM8750 | 59 | select SND_SOC_WM8750 |
| 60 | select SND_S3C2412_SOC_I2S | 60 | select SND_S3C2412_SOC_I2S |
| 61 | help | 61 | help |
| 62 | Sat Y if you want to add support for SoC audio on the Jive. | 62 | Say Y if you want to add support for SoC audio on the Jive. |
| 63 | 63 | ||
| 64 | config SND_SOC_SAMSUNG_SMDK_WM8580 | 64 | config SND_SOC_SAMSUNG_SMDK_WM8580 |
| 65 | tristate "SoC I2S Audio support for WM8580 on SMDK" | 65 | tristate "SoC I2S Audio support for WM8580 on SMDK" |
| @@ -145,11 +145,11 @@ config SND_SOC_SAMSUNG_RX1950_UDA1380 | |||
| 145 | 145 | ||
| 146 | config SND_SOC_SAMSUNG_SMDK_WM9713 | 146 | config SND_SOC_SAMSUNG_SMDK_WM9713 |
| 147 | tristate "SoC AC97 Audio support for SMDK with WM9713" | 147 | tristate "SoC AC97 Audio support for SMDK with WM9713" |
| 148 | depends on SND_SOC_SAMSUNG && (MACH_SMDK6410 || MACH_SMDKC100 || MACH_SMDKV210 || MACH_SMDKC110 || MACH_SMDKV310 || MACH_SMDKC210) | 148 | depends on SND_SOC_SAMSUNG && (MACH_SMDK6410 || MACH_SMDKC100 || MACH_SMDKV210 || MACH_SMDKC110) |
| 149 | select SND_SOC_WM9713 | 149 | select SND_SOC_WM9713 |
| 150 | select SND_SAMSUNG_AC97 | 150 | select SND_SAMSUNG_AC97 |
| 151 | help | 151 | help |
| 152 | Sat Y if you want to add support for SoC audio on the SMDK. | 152 | Say Y if you want to add support for SoC audio on the SMDK. |
| 153 | 153 | ||
| 154 | config SND_SOC_SMARTQ | 154 | config SND_SOC_SMARTQ |
| 155 | tristate "SoC I2S Audio support for SmartQ board" | 155 | tristate "SoC I2S Audio support for SmartQ board" |
diff --git a/sound/soc/txx9/txx9aclc-ac97.c b/sound/soc/txx9/txx9aclc-ac97.c index e0305a148568..9edd68db9f48 100644 --- a/sound/soc/txx9/txx9aclc-ac97.c +++ b/sound/soc/txx9/txx9aclc-ac97.c | |||
| @@ -183,14 +183,16 @@ static int txx9aclc_ac97_dev_probe(struct platform_device *pdev) | |||
| 183 | irq = platform_get_irq(pdev, 0); | 183 | irq = platform_get_irq(pdev, 0); |
| 184 | if (irq < 0) | 184 | if (irq < 0) |
| 185 | return irq; | 185 | return irq; |
| 186 | |||
| 187 | drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL); | ||
| 188 | if (!drvdata) | ||
| 189 | return -ENOMEM; | ||
| 190 | |||
| 186 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 191 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 187 | drvdata->base = devm_ioremap_resource(&pdev->dev, r); | 192 | drvdata->base = devm_ioremap_resource(&pdev->dev, r); |
| 188 | if (IS_ERR(drvdata->base)) | 193 | if (IS_ERR(drvdata->base)) |
| 189 | return PTR_ERR(drvdata->base); | 194 | return PTR_ERR(drvdata->base); |
| 190 | 195 | ||
| 191 | drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL); | ||
| 192 | if (!drvdata) | ||
| 193 | return -ENOMEM; | ||
| 194 | platform_set_drvdata(pdev, drvdata); | 196 | platform_set_drvdata(pdev, drvdata); |
| 195 | drvdata->physbase = r->start; | 197 | drvdata->physbase = r->start; |
| 196 | if (sizeof(drvdata->physbase) > sizeof(r->start) && | 198 | if (sizeof(drvdata->physbase) > sizeof(r->start) && |
diff --git a/sound/usb/mixer_maps.c b/sound/usb/mixer_maps.c index 32af6b741ef5..d1d72ff50347 100644 --- a/sound/usb/mixer_maps.c +++ b/sound/usb/mixer_maps.c | |||
| @@ -328,6 +328,11 @@ static struct usbmix_name_map gamecom780_map[] = { | |||
| 328 | {} | 328 | {} |
| 329 | }; | 329 | }; |
| 330 | 330 | ||
| 331 | static const struct usbmix_name_map kef_x300a_map[] = { | ||
| 332 | { 10, NULL }, /* firmware locks up (?) when we try to access this FU */ | ||
| 333 | { 0 } | ||
| 334 | }; | ||
| 335 | |||
| 331 | /* | 336 | /* |
| 332 | * Control map entries | 337 | * Control map entries |
| 333 | */ | 338 | */ |
| @@ -419,6 +424,10 @@ static struct usbmix_ctl_map usbmix_ctl_maps[] = { | |||
| 419 | .id = USB_ID(0x200c, 0x1018), | 424 | .id = USB_ID(0x200c, 0x1018), |
| 420 | .map = ebox44_map, | 425 | .map = ebox44_map, |
| 421 | }, | 426 | }, |
| 427 | { | ||
| 428 | .id = USB_ID(0x27ac, 0x1000), | ||
| 429 | .map = kef_x300a_map, | ||
| 430 | }, | ||
| 422 | { 0 } /* terminator */ | 431 | { 0 } /* terminator */ |
| 423 | }; | 432 | }; |
| 424 | 433 | ||
diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c index 896f27047ed6..6aa6fb6f7bd9 100644 --- a/tools/perf/builtin-trace.c +++ b/tools/perf/builtin-trace.c | |||
| @@ -37,6 +37,10 @@ | |||
| 37 | # define MADV_UNMERGEABLE 13 | 37 | # define MADV_UNMERGEABLE 13 |
| 38 | #endif | 38 | #endif |
| 39 | 39 | ||
| 40 | #ifndef EFD_SEMAPHORE | ||
| 41 | # define EFD_SEMAPHORE 1 | ||
| 42 | #endif | ||
| 43 | |||
| 40 | struct tp_field { | 44 | struct tp_field { |
| 41 | int offset; | 45 | int offset; |
| 42 | union { | 46 | union { |
| @@ -279,6 +283,11 @@ static size_t syscall_arg__scnprintf_strarray(char *bf, size_t size, | |||
| 279 | 283 | ||
| 280 | #define SCA_STRARRAY syscall_arg__scnprintf_strarray | 284 | #define SCA_STRARRAY syscall_arg__scnprintf_strarray |
| 281 | 285 | ||
| 286 | #if defined(__i386__) || defined(__x86_64__) | ||
| 287 | /* | ||
| 288 | * FIXME: Make this available to all arches as soon as the ioctl beautifier | ||
| 289 | * gets rewritten to support all arches. | ||
| 290 | */ | ||
| 282 | static size_t syscall_arg__scnprintf_strhexarray(char *bf, size_t size, | 291 | static size_t syscall_arg__scnprintf_strhexarray(char *bf, size_t size, |
| 283 | struct syscall_arg *arg) | 292 | struct syscall_arg *arg) |
| 284 | { | 293 | { |
| @@ -286,6 +295,7 @@ static size_t syscall_arg__scnprintf_strhexarray(char *bf, size_t size, | |||
| 286 | } | 295 | } |
| 287 | 296 | ||
| 288 | #define SCA_STRHEXARRAY syscall_arg__scnprintf_strhexarray | 297 | #define SCA_STRHEXARRAY syscall_arg__scnprintf_strhexarray |
| 298 | #endif /* defined(__i386__) || defined(__x86_64__) */ | ||
| 289 | 299 | ||
| 290 | static size_t syscall_arg__scnprintf_fd(char *bf, size_t size, | 300 | static size_t syscall_arg__scnprintf_fd(char *bf, size_t size, |
| 291 | struct syscall_arg *arg); | 301 | struct syscall_arg *arg); |
| @@ -839,6 +849,10 @@ static size_t syscall_arg__scnprintf_signum(char *bf, size_t size, struct syscal | |||
| 839 | 849 | ||
| 840 | #define SCA_SIGNUM syscall_arg__scnprintf_signum | 850 | #define SCA_SIGNUM syscall_arg__scnprintf_signum |
| 841 | 851 | ||
| 852 | #if defined(__i386__) || defined(__x86_64__) | ||
| 853 | /* | ||
| 854 | * FIXME: Make this available to all arches. | ||
| 855 | */ | ||
| 842 | #define TCGETS 0x5401 | 856 | #define TCGETS 0x5401 |
| 843 | 857 | ||
| 844 | static const char *tioctls[] = { | 858 | static const char *tioctls[] = { |
| @@ -860,6 +874,7 @@ static const char *tioctls[] = { | |||
| 860 | }; | 874 | }; |
| 861 | 875 | ||
| 862 | static DEFINE_STRARRAY_OFFSET(tioctls, 0x5401); | 876 | static DEFINE_STRARRAY_OFFSET(tioctls, 0x5401); |
| 877 | #endif /* defined(__i386__) || defined(__x86_64__) */ | ||
| 863 | 878 | ||
| 864 | #define STRARRAY(arg, name, array) \ | 879 | #define STRARRAY(arg, name, array) \ |
| 865 | .arg_scnprintf = { [arg] = SCA_STRARRAY, }, \ | 880 | .arg_scnprintf = { [arg] = SCA_STRARRAY, }, \ |
| @@ -941,9 +956,16 @@ static struct syscall_fmt { | |||
| 941 | { .name = "getrlimit", .errmsg = true, STRARRAY(0, resource, rlimit_resources), }, | 956 | { .name = "getrlimit", .errmsg = true, STRARRAY(0, resource, rlimit_resources), }, |
| 942 | { .name = "ioctl", .errmsg = true, | 957 | { .name = "ioctl", .errmsg = true, |
| 943 | .arg_scnprintf = { [0] = SCA_FD, /* fd */ | 958 | .arg_scnprintf = { [0] = SCA_FD, /* fd */ |
| 959 | #if defined(__i386__) || defined(__x86_64__) | ||
| 960 | /* | ||
| 961 | * FIXME: Make this available to all arches. | ||
| 962 | */ | ||
| 944 | [1] = SCA_STRHEXARRAY, /* cmd */ | 963 | [1] = SCA_STRHEXARRAY, /* cmd */ |
| 945 | [2] = SCA_HEX, /* arg */ }, | 964 | [2] = SCA_HEX, /* arg */ }, |
| 946 | .arg_parm = { [1] = &strarray__tioctls, /* cmd */ }, }, | 965 | .arg_parm = { [1] = &strarray__tioctls, /* cmd */ }, }, |
| 966 | #else | ||
| 967 | [2] = SCA_HEX, /* arg */ }, }, | ||
| 968 | #endif | ||
| 947 | { .name = "kill", .errmsg = true, | 969 | { .name = "kill", .errmsg = true, |
| 948 | .arg_scnprintf = { [1] = SCA_SIGNUM, /* sig */ }, }, | 970 | .arg_scnprintf = { [1] = SCA_SIGNUM, /* sig */ }, }, |
| 949 | { .name = "linkat", .errmsg = true, | 971 | { .name = "linkat", .errmsg = true, |
diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c index d248fca6d7ed..1e15df10a88c 100644 --- a/tools/perf/util/parse-events.c +++ b/tools/perf/util/parse-events.c | |||
| @@ -1091,12 +1091,12 @@ int is_valid_tracepoint(const char *event_string) | |||
| 1091 | static bool is_event_supported(u8 type, unsigned config) | 1091 | static bool is_event_supported(u8 type, unsigned config) |
| 1092 | { | 1092 | { |
| 1093 | bool ret = true; | 1093 | bool ret = true; |
| 1094 | int open_return; | ||
| 1094 | struct perf_evsel *evsel; | 1095 | struct perf_evsel *evsel; |
| 1095 | struct perf_event_attr attr = { | 1096 | struct perf_event_attr attr = { |
| 1096 | .type = type, | 1097 | .type = type, |
| 1097 | .config = config, | 1098 | .config = config, |
| 1098 | .disabled = 1, | 1099 | .disabled = 1, |
| 1099 | .exclude_kernel = 1, | ||
| 1100 | }; | 1100 | }; |
| 1101 | struct { | 1101 | struct { |
| 1102 | struct thread_map map; | 1102 | struct thread_map map; |
| @@ -1108,7 +1108,20 @@ static bool is_event_supported(u8 type, unsigned config) | |||
| 1108 | 1108 | ||
| 1109 | evsel = perf_evsel__new(&attr); | 1109 | evsel = perf_evsel__new(&attr); |
| 1110 | if (evsel) { | 1110 | if (evsel) { |
| 1111 | ret = perf_evsel__open(evsel, NULL, &tmap.map) >= 0; | 1111 | open_return = perf_evsel__open(evsel, NULL, &tmap.map); |
| 1112 | ret = open_return >= 0; | ||
| 1113 | |||
| 1114 | if (open_return == -EACCES) { | ||
| 1115 | /* | ||
| 1116 | * This happens if the paranoid value | ||
| 1117 | * /proc/sys/kernel/perf_event_paranoid is set to 2 | ||
| 1118 | * Re-run with exclude_kernel set; we don't do that | ||
| 1119 | * by default as some ARM machines do not support it. | ||
| 1120 | * | ||
| 1121 | */ | ||
| 1122 | evsel->attr.exclude_kernel = 1; | ||
| 1123 | ret = perf_evsel__open(evsel, NULL, &tmap.map) >= 0; | ||
| 1124 | } | ||
| 1112 | perf_evsel__delete(evsel); | 1125 | perf_evsel__delete(evsel); |
| 1113 | } | 1126 | } |
| 1114 | 1127 | ||
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c index a8a9b6cd93a8..d8b048c20cde 100644 --- a/tools/perf/util/probe-event.c +++ b/tools/perf/util/probe-event.c | |||
| @@ -336,8 +336,8 @@ static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs, | |||
| 336 | return ret; | 336 | return ret; |
| 337 | 337 | ||
| 338 | for (i = 0; i < ntevs && ret >= 0; i++) { | 338 | for (i = 0; i < ntevs && ret >= 0; i++) { |
| 339 | /* point.address is the addres of point.symbol + point.offset */ | ||
| 339 | offset = tevs[i].point.address - stext; | 340 | offset = tevs[i].point.address - stext; |
| 340 | offset += tevs[i].point.offset; | ||
| 341 | tevs[i].point.offset = 0; | 341 | tevs[i].point.offset = 0; |
| 342 | zfree(&tevs[i].point.symbol); | 342 | zfree(&tevs[i].point.symbol); |
| 343 | ret = e_snprintf(buf, 32, "0x%lx", offset); | 343 | ret = e_snprintf(buf, 32, "0x%lx", offset); |
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index 0b39a48e5110..5da6ce74c676 100644 --- a/tools/perf/util/session.c +++ b/tools/perf/util/session.c | |||
| @@ -1008,6 +1008,12 @@ static int perf_session__process_user_event(struct perf_session *session, union | |||
| 1008 | if (err == 0) | 1008 | if (err == 0) |
| 1009 | perf_session__set_id_hdr_size(session); | 1009 | perf_session__set_id_hdr_size(session); |
| 1010 | return err; | 1010 | return err; |
| 1011 | case PERF_RECORD_HEADER_EVENT_TYPE: | ||
| 1012 | /* | ||
| 1013 | * Depreceated, but we need to handle it for sake | ||
| 1014 | * of old data files create in pipe mode. | ||
| 1015 | */ | ||
| 1016 | return 0; | ||
| 1011 | case PERF_RECORD_HEADER_TRACING_DATA: | 1017 | case PERF_RECORD_HEADER_TRACING_DATA: |
| 1012 | /* setup for reading amidst mmap */ | 1018 | /* setup for reading amidst mmap */ |
| 1013 | lseek(fd, file_offset, SEEK_SET); | 1019 | lseek(fd, file_offset, SEEK_SET); |
