[PATCH] of/address: Add of_io_release_and_unmap()

2015-02-25 Thread Joshua Clayton
New Fumction of_io_release_an_unmap frees resources and io memory allocated by io_request_and_map() Signed-off-by: Joshua Clayton stillcompil...@gmail.com --- drivers/of/address.c | 29 + include/linux/of_address.h | 2 ++ 2 files changed, 31 insertions

[RFC] New of_io_release_and_unmap()

2015-02-25 Thread Joshua Clayton
Hello folks, I notice that io_request_and_map has no inverse. I would like to add a new function to undo what it does. Joshua Clayton (1): of/address: Add of_io_release_and_unmap() drivers/of/address.c | 29 + include/linux/of_address.h | 2 ++ 2 files

Re: [RFC PATCH 5/5] arm: perf: Use FIQ to handle PMU events.

2015-01-20 Thread Joshua Clayton
On Tuesday, January 20, 2015 10:18:10 AM Daniel Thompson wrote: > On 19/01/15 16:35, Joshua Clayton wrote: > > On Tuesday, January 13, 2015 04:35:31 PM Daniel Thompson wrote: > >> Using FIQ (if it is available) gives perf a better insight into the > >> system by allowi

Re: [RFC PATCH 5/5] arm: perf: Use FIQ to handle PMU events.

2015-01-20 Thread Joshua Clayton
On Tuesday, January 20, 2015 10:18:10 AM Daniel Thompson wrote: On 19/01/15 16:35, Joshua Clayton wrote: On Tuesday, January 13, 2015 04:35:31 PM Daniel Thompson wrote: Using FIQ (if it is available) gives perf a better insight into the system by allowing code run with interrupts disabled

Re: [RFC PATCH 5/5] arm: perf: Use FIQ to handle PMU events.

2015-01-19 Thread Joshua Clayton
entry > handle_fiq_as_nmi(struct pt_regs *regs) irq = gic_ack_fiq(); > > if (irq) { > - /* empty - no SPI handlers (yet) */ > + cpu_pmu_handle_fiq(irq); > } else { > #ifdef CONFIG_SMP > ipi_cpu_backtrace(regs); > --

Re: [RFC PATCH 2/5] irq: Allow interrupts to routed to NMI (or similar)

2015-01-19 Thread Joshua Clayton
+ ret = __irq_set_nmi_routing(desc, irq, false); > + if (ret == 1) { > + pr_err("Failed to disable NMI routing for irq > %d\n", > + irq); > + goto

Re: [RFC PATCH 2/5] irq: Allow interrupts to routed to NMI (or similar)

2015-01-19 Thread Joshua Clayton
://lists.infradead.org/mailman/listinfo/linux-arm-kernel -- Joshua Clayton Software Engineer UniWest 122 S. 4th Avenue Pasco, WA 99301 Ph: (509) 544-0720 Fx: (509) 544-0868 -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

Re: [RFC PATCH 5/5] arm: perf: Use FIQ to handle PMU events.

2015-01-19 Thread Joshua Clayton
CONFIG_SMP ipi_cpu_backtrace(regs); -- 1.9.3 ___ linux-arm-kernel mailing list linux-arm-ker...@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel -- Joshua Clayton Software Engineer UniWest 122 S. 4th

[PATCH] rtc: rtc-pfc2123: Add support for devicetree

2014-12-29 Thread Joshua Clayton
Add compatible string "nxp,rtc-pcf2123" Document the binding Signed-off-by: Joshua Clayton --- Documentation/devicetree/bindings/rtc/nxp,rtc-2123.txt | 16 drivers/rtc/rtc-pcf2123.c | 10 ++ 2 files changed, 26 insertions(+) c

[PATCH] rtc: rtc-pfc2123: Add support for devicetree

2014-12-29 Thread Joshua Clayton
Add compatible string nxp,rtc-pcf2123 Document the binding Signed-off-by: Joshua Clayton stillcompil...@gmail.com --- Documentation/devicetree/bindings/rtc/nxp,rtc-2123.txt | 16 drivers/rtc/rtc-pcf2123.c | 10 ++ 2 files changed, 26

<    1   2   3   4   5   6