Re: Old platforms: bring out your dead

2021-01-10 Thread Fabian Vogt
Hi, Am Samstag, 9. Januar 2021, 23:20:48 CET schrieb Arnd Bergmann: > On Sat, Jan 9, 2021 at 1:06 AM Daniel Tang wrote: > > > > Hi Arnd, > > > > On 9 Jan 2021, at 9:55 am, Arnd Bergmann wrote: > > > > * nspire -- added in 2013, no notable changes after 2015 Most of the platform is just the DT

[tip: efi/urgent] efi/tpm: Verify event log header before parsing

2020-06-19 Thread tip-bot2 for Fabian Vogt
The following commit has been merged into the efi/urgent branch of tip: Commit-ID: 7dfc06a0f25b593a9f51992f540c0f80a57f3629 Gitweb: https://git.kernel.org/tip/7dfc06a0f25b593a9f51992f540c0f80a57f3629 Author:Fabian Vogt AuthorDate:Mon, 15 Jun 2020 09:16:36 +02:00 Committer

Re: linux-next: build failure after merge of the final tree (gpio tree related)

2014-03-05 Thread Fabian Vogt
Hi, On Wed, Mar 5, 2014, 3:16 PM, Linus Walleij wrote: > On Wed, Mar 5, 2014 at 2:35 PM, Stephen Rothwell > wrote: > > > After merging the final tree, today's linux-next build (powerpc > > allyesconfig) failed like this: > > > > drivers/gpio/gpio-zevio.c: In function 'zevio_gpio_port_get': > >

Re: linux-next: build failure after merge of the final tree (gpio tree related)

2014-03-05 Thread Fabian Vogt
Hi, On Wed, Mar 5, 2014, 3:16 PM, Linus Walleij wrote: On Wed, Mar 5, 2014 at 2:35 PM, Stephen Rothwell s...@canb.auug.org.au wrote: After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/gpio/gpio-zevio.c: In function

Re: [PATCH V6] gpio: New driver for LSI ZEVIO SoCs

2014-02-27 Thread Fabian Vogt
On Thu, Feb 24, 2014 at 10:31:59, Linux Walleij wrote: > On Mon, Feb 24, 2014 at 8:54 PM, Fabian Vogt wrote: > > > This driver supports the GPIO controller found in LSI ZEVIO SoCs. > > It has been successfully tested on a TI nspire CX calculator. > > > > Signed-of

Re: [PATCH V6] gpio: New driver for LSI ZEVIO SoCs

2014-02-27 Thread Fabian Vogt
On Thu, Feb 24, 2014 at 10:31:59, Linux Walleij linus.wall...@linaro.org wrote: On Mon, Feb 24, 2014 at 8:54 PM, Fabian Vogt fab...@ritter-vogt.de wrote: This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator

[PATCH V6] gpio: New driver for LSI ZEVIO SoCs

2014-02-24 Thread Fabian Vogt
This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. Signed-off-by: Fabian Vogt --- It took a while for me to make this patch. School, other projects and some bugs which prevented testing were time consuming. This patch

[PATCH V6] gpio: New driver for LSI ZEVIO SoCs

2014-02-24 Thread Fabian Vogt
This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. Signed-off-by: Fabian Vogt fab...@ritter-vogt.de --- It took a while for me to make this patch. School, other projects and some bugs which prevented testing were time

Re: [PATCH V5] gpio: New driver for LSI ZEVIO SoCs

2013-08-29 Thread Fabian Vogt
On 08/26/2013 12:18 PM, Fabian Vogt wrote: This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. What changed in v5 (or indeed any other versions?) Repeating what Stephen said, can you please provide a changelog? I

Re: [PATCH V5] gpio: New driver for LSI ZEVIO SoCs

2013-08-29 Thread Fabian Vogt
On 08/26/2013 12:18 PM, Fabian Vogt wrote: This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. What changed in v5 (or indeed any other versions?) Repeating what Stephen said, can you please provide a changelog? I

[PATCH V5] gpio: New driver for LSI ZEVIO SoCs

2013-08-26 Thread Fabian Vogt
ilinx.o +obj-$(CONFIG_GPIO_ZEVIO) += gpio-zevio.o diff --git a/drivers/gpio/gpio-zevio.c b/drivers/gpio/gpio-zevio.c new file mode 100644 index 000..c3215f8 --- /dev/null +++ b/drivers/gpio/gpio-zevio.c @@ -0,0 +1,210 @@ +/* + * GPIO controller in LSI ZEVIO SoCs. + * + * Author: Fabian

[PATCH V5] gpio: New driver for LSI ZEVIO SoCs

2013-08-26 Thread Fabian Vogt
/gpio/gpio-zevio.c b/drivers/gpio/gpio-zevio.c new file mode 100644 index 000..c3215f8 --- /dev/null +++ b/drivers/gpio/gpio-zevio.c @@ -0,0 +1,210 @@ +/* + * GPIO controller in LSI ZEVIO SoCs. + * + * Author: Fabian Vogt fab...@ritter-vogt.de + * + * This program is free software; you can

[PATCH V4] gpio: New driver for LSI ZEVIO SoCs

2013-08-25 Thread Fabian Vogt
IO_WM8994) += gpio-wm8994.o obj-$(CONFIG_GPIO_XILINX) += gpio-xilinx.o +obj-$(CONFIG_GPIO_ZEVIO) += gpio-zevio.o diff --git a/drivers/gpio/gpio-zevio.c b/drivers/gpio/gpio-zevio.c new file mode 100644 index 000..35a254b --- /dev/null +++ b/drivers/gpio/gpio-zevio.c @@ -0,0 +1,214 @

Re: [PATCH V3] gpio: New driver for LSI ZEVIO SoCs

2013-08-25 Thread Fabian Vogt
Hi, On 08/07/2013 06:53 AM, Fabian Vogt wrote: This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. diff --git a/Documentation/devicetree/bindings/gpio/gpio-zevio.txt b/Documentation/devicetree/bindings/gpio/gpio

Re: [PATCH V3] gpio: New driver for LSI ZEVIO SoCs

2013-08-25 Thread Fabian Vogt
Hi, On 08/07/2013 06:53 AM, Fabian Vogt wrote: This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. diff --git a/Documentation/devicetree/bindings/gpio/gpio-zevio.txt b/Documentation/devicetree/bindings/gpio/gpio

[PATCH V4] gpio: New driver for LSI ZEVIO SoCs

2013-08-25 Thread Fabian Vogt
-xilinx.o +obj-$(CONFIG_GPIO_ZEVIO) += gpio-zevio.o diff --git a/drivers/gpio/gpio-zevio.c b/drivers/gpio/gpio-zevio.c new file mode 100644 index 000..35a254b --- /dev/null +++ b/drivers/gpio/gpio-zevio.c @@ -0,0 +1,214 @@ +/* + * GPIO controller in LSI ZEVIO SoCs. + * + * Author: Fabian Vogt fab

Re: [PATCH] gpio: New driver for LSI ZEVIO SoCs

2013-08-16 Thread Fabian Vogt
On Fri, Aug 16, 2013 at 4:46 PM, Linus Walleij wrote: On Mon, Aug 5, 2013 at 11:59 PM, Fabian Vogt wrote: From: Fabian Vogt This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. Signed-off-by: Fabian Vogt Hi

Re: [PATCH] gpio: New driver for LSI ZEVIO SoCs

2013-08-16 Thread Fabian Vogt
On Fri, Aug 16, 2013 at 4:46 PM, Linus Walleij linus.wall...@linaro.org wrote: On Mon, Aug 5, 2013 at 11:59 PM, Fabian Vogt fab...@ritter-vogt.de wrote: From: Fabian Vogt fab...@ritter-vogt.de This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested

Re: [PATCH] [V2] gpio: New driver for LSI ZEVIO SoCs

2013-08-07 Thread Fabian Vogt
Hi, --- /dev/null +++ b/Documentation/devicetree/bindings/gpio/gpio-zevio.txt @@ -0,0 +1,19 @@ +Zevio GPIO controller + +Required properties: +- compatible = "lsi,zevio-gpio" +- reg = +- #gpio-cells = <2> +- gpio-controller; + +Optional: +- #ngpios = <32>: Number of GPIOs. Defaults to 32 if

[PATCH V3] gpio: New driver for LSI ZEVIO SoCs

2013-08-07 Thread Fabian Vogt
++ b/drivers/gpio/gpio-zevio.c @@ -0,0 +1,212 @@ +/* + * GPIO controller in LSI ZEVIO SoCs. + * + * Author: Fabian Vogt + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software

[PATCH V3] gpio: New driver for LSI ZEVIO SoCs

2013-08-07 Thread Fabian Vogt
ZEVIO SoCs. + * + * Author: Fabian Vogt fab...@ritter-vogt.de + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#include linux/spinlock.h +#include

Re: [PATCH] [V2] gpio: New driver for LSI ZEVIO SoCs

2013-08-07 Thread Fabian Vogt
Hi, --- /dev/null +++ b/Documentation/devicetree/bindings/gpio/gpio-zevio.txt @@ -0,0 +1,19 @@ +Zevio GPIO controller + +Required properties: +- compatible = lsi,zevio-gpio +- reg = BASEADDR SIZE +- #gpio-cells = 2 +- gpio-controller; + +Optional: +- #ngpios = 32: Number of GPIOs. Defaults to

[PATCH] [V2] gpio: New driver for LSI ZEVIO SoCs

2013-08-06 Thread Fabian Vogt
new file mode 100644 index 000..f5c04b3 --- /dev/null +++ b/drivers/gpio/gpio-zevio.c @@ -0,0 +1,212 @@ +/* + * GPIO controller in LSI ZEVIO SoCs. + * + * Author: Fabian Vogt + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GN

[PATCH] [V2] gpio: New driver for LSI ZEVIO SoCs

2013-08-06 Thread Fabian Vogt
/gpio-zevio.c @@ -0,0 +1,212 @@ +/* + * GPIO controller in LSI ZEVIO SoCs. + * + * Author: Fabian Vogt fab...@ritter-vogt.de + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free

[PATCH] gpio: New driver for LSI ZEVIO SoCs

2013-08-05 Thread Fabian Vogt
From: Fabian Vogt This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. Signed-off-by: Fabian Vogt --- Notes: Applies to v3.11-rc3-378-g1aa3b5c .../devicetree/bindings/gpio/gpio-zevio.txt| 19

[PATCH] gpio: New driver for LSI ZEVIO SoCs

2013-08-05 Thread Fabian Vogt
From: Fabian Vogt fab...@ritter-vogt.de This driver supports the GPIO controller found in LSI ZEVIO SoCs. It has been successfully tested on a TI nspire CX calculator. Signed-off-by: Fabian Vogt fab...@ritter-vogt.de --- Notes: Applies to v3.11-rc3-378-g1aa3b5c .../devicetree

Re: [RFC PATCH arm: initial TI-Nspire support]

2013-04-08 Thread Fabian Vogt
On Monday 08 April 2013, Fabian Vogt wrote: The latest kernel it seems to get stuck at console_lock() in do_register_framebuffer (drivers/video/fbmem.c:1655) if the LCD-controller is enabled. (Early printk and serial console works fine) CONFIG_NO_HZ is not activated, it works completely. Could

Re: [RFC PATCH arm: initial TI-Nspire support]

2013-04-08 Thread Fabian Vogt
The latest kernel it seems to get stuck at console_lock() in register_framebuffer (drivers/video/fbmem.c:1655) if the LCD-controller is enabled. (Early printk and serial console works fine) CONFIG_NO_HZ is not activated, it works completely. Could this be a kernel bug or is this an issue with

Re: [RFC PATCH arm: initial TI-Nspire support]

2013-04-08 Thread Fabian Vogt
The latest kernel it seems to get stuck at console_lock() in register_framebuffer (drivers/video/fbmem.c:1655) if the LCD-controller is enabled. (Early printk and serial console works fine) CONFIG_NO_HZ is not activated, it works completely. Could this be a kernel bug or is this an issue with

Re: [RFC PATCH arm: initial TI-Nspire support]

2013-04-08 Thread Fabian Vogt
On Monday 08 April 2013, Fabian Vogt wrote: The latest kernel it seems to get stuck at console_lock() in do_register_framebuffer (drivers/video/fbmem.c:1655) if the LCD-controller is enabled. (Early printk and serial console works fine) CONFIG_NO_HZ is not activated, it works completely. Could