Re: Device Description for FPGA Components on x86 system

2019-04-10 Thread Eric Schwarz
Hi, everything you want is already available and on the way to mainline concerning support for various FPGA loading modes or available for checkout from a git repository. All that has already been discussed on the mailing list. FPGA loading interface is available here [1]. Patchset missing fo

Re: [PATCH 0/4] patches for FPGA

2018-11-12 Thread Eric Schwarz
Hello Alan, Am 07.11.2018 18:51, schrieb Alan Tull: Hi Greg, Please take these four small fpga fixes patches. They have been reviewed on the mailing list and apply cleanly on current linux-next and char-misc-testing. Thanks, Alan Anatolij Gustschin (1): fpga: altera-cvp: fix 'bad IO access'

Re: [PATCH] fpga: altera_cvp: restrict registration to CvP enabled devices

2018-10-22 Thread Eric Schwarz
Hi Andreas, Am 22.10.2018 15:15, schrieb Andreas Puhm: Hi Moritz, Thank you, for your fast response! Below you can find the updated patch. Full description: The altera_cvp probe function only checks, if the Altera/Intel PCI

Re: [PATCH 0/3] FPGA Manager support for FPP via FT232H FT245-FIFO

2017-08-02 Thread Eric Schwarz
.2017 16:16, schrieb Alan Tull: On Wed, Aug 2, 2017 at 6:36 AM, Eric Schwarz wrote: Dear all, DENX Software Engineering develops and brings this driver to mainline on behalf of us (ARRI*). Since there was a lot of discussion around this patch series I would highly appreciate if someone

Re: [PATCH 0/3] FPGA Manager support for FPP via FT232H FT245-FIFO

2017-08-02 Thread Eric Schwarz
Dear all, DENX Software Engineering develops and brings this driver to mainline on behalf of us (ARRI*). Since there was a lot of discussion around this patch series I would highly appreciate if someone could sum up what needs to be changed in detail in order to get this driver into the main

Re: [PATCH v2] ARM: dts: rockchip: use internal pull-up resistors on I2C busses

2014-10-29 Thread Max Schwarz
Hi, I'll agree with Karl and Doug. If you (as a board vendor/maintainer/etc) want to use I2C, it's *your* responsibility to provide the pullup resistors by either including pullup resistors on the board or by enabling the internal ones. Either way, you should think a moment about the consequenc

Re: [PATCH v6] i2c: rk3x: adjust the LOW divison based on characteristics of SCL

2014-10-14 Thread Max Schwarz
he LOW period of the scl clock. > > Thanks Doug for the suggestion about division formulas. > > Tested-by: Heiko Stuebner > Reviewed-by: Doug Anderson > Tested-by: Doug Anderson > Signed-off-by: Addy Ke Reviewed-by: Max Schwarz Tested-by: Max Schwarz Cheers,

Re: [PATCH v5] i2c: rk3x: adjust the LOW divison based on characteristics of SCL

2014-10-13 Thread Max Schwarz
Hi Addy, On Monday 13 October 2014 at 10:44:04, Addy Ke wrote: > As show in I2C specification: > - Standard-mode: the minimum HIGH period of the scl clock is 4.0us > the minimum LOW period of the scl clock is 4.7us > - Fast-mode: the minimum HIGH period of the scl clock is 0.6us >

Re: [PATCH v4] i2c: rk3x: adjust the LOW divison based on characteristics of SCL

2014-10-12 Thread Max Schwarz
Hi Addy, sorry for the long delay, I finally had time to look at your work. On Thursday 09 October 2014 at 14:47:15, Addy Ke wrote: > As show in I2C specification: > - Standard-mode: the minimum HIGH period of the scl clock is 4.0us > the minimum LOW period of the scl clock is 4.

Re: [PATCH] i2c: rk3x: fix 0 length write transfers

2014-10-02 Thread Max Schwarz
ssed == 0 && cnt == 0) Yes, looks correct and makes i2cdetect work for me on Radxa Rock. Reviewed-By: Max Schwarz Tested-By: Max Schwarz Cheers, Max -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] i2c-rk3x: move setup to the earlier subsys initcall

2014-09-22 Thread Max Schwarz
ol. I'm sorry, I see now that subsys_initcall() gets mapped to module_init() if the driver is built as a loadable module. Everything is fine ;-) Acked-By: Max Schwarz Cheers, Max -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a messag

Re: [PATCH] i2c-rk3x: move setup to the earlier subsys initcall

2014-09-22 Thread Max Schwarz
Hi Chris, Am Montag, 22. September 2014, 15:24:35 schrieb Chris Zhong: > Some device using this bus, such as regulators, they should register > as early as possible, so the I2C bus master needs to be loaded early. > Therefore initialize via subsys_initcall() is better. You could also use probe de

Re: [PATCH] i2c: rk3x: fix bug that cause transfer fails in master receive mode

2014-08-21 Thread Max Schwarz
thing and trigger an additional chunk read if necessary: /* are we finished? */ if (i2c->processed == i2c->msg->len) rk3x_i2c_stop(i2c, i2c->error); else rk3x_i2c_prepare_read(i2c); I'd like a clearer syntax as suggested by Sergei, though. Apart from that, Acked-By: Max Schwarz Cheers, Max -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

[PATCH v6] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-06-11 Thread Max Schwarz
Driver for the native I2C adapter found in Rockchip RK3xxx SoCs. Configuration is only possible through devicetree. The driver is interrupt driven and supports the I2C_M_IGNORE_NAK mangling bit. Signed-off-by: Max Schwarz --- The driver cannot be used without a proper clock driver supporting

Re: [PATCH v5] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-06-11 Thread Max Schwarz
Hi Wolfram, thanks for your comments. On Tuesday 10 June 2014 at 21:27:09, Wolfram Sang wrote: > Checking if the spinlock is needed would be nice, but we can also fix > this later. I'm simply not sure about the spinlock. My knowledge about IRQ handling in linux is limited. We have an SMP syste

[PATCH v5] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-06-07 Thread Max Schwarz
Driver for the native I2C adapter found in Rockchip RK3xxx SoCs. Configuration is only possible through devicetree. The driver is interrupt driven and supports the I2C_M_IGNORE_NAK mangling bit. Signed-off-by: Max Schwarz --- Sorry for the resend, I forgot to CC the developers at Rockchip

[PATCH v5] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-06-07 Thread Max Schwarz
Driver for the native I2C adapter found in Rockchip RK3xxx SoCs. Configuration is only possible through devicetree. The driver is interrupt driven and supports the I2C_M_IGNORE_NAK mangling bit. Signed-off-by: Max Schwarz --- The driver cannot be used without a proper clock driver supporting

Re: [PATCH v4] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-06-07 Thread Max Schwarz
Hi Wolfram, thanks for the review! > > + > > + /* Settings */ > > + unsigned int scl_frequency; > > + > > + /* Synchronization & notification */ > > + spinlock_t lock; > > Why the lock? The core has per-adapter locks anyhow. I'm using it to lock the rk3x_i2c struct during interrupts. It

[PATCH v4] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-05-19 Thread Max Schwarz
Driver for the native I2C adapter found in Rockchip RK3xxx SoCs. Configuration is only possible through devicetree. The driver is interrupt driven and supports the I2C_M_IGNORE_NAK mangling bit. Signed-off-by: Max Schwarz --- The driver cannot be used without a proper clock driver supporting

[PATCH v3] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-05-18 Thread Max Schwarz
Driver for the native I2C adapter found in Rockchip RK3xxx SoCs. Configuration is only possible through devicetree. The driver is interrupt driven and supports the I2C_M_IGNORE_NAK mangling bit. Signed-off-by: Max Schwarz --- The driver cannot be used without a proper clock driver supporting

[PATCH v2] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-04-28 Thread Max Schwarz
Driver for the native I2C adapter found in Rockchip RK3xxx SoCs. Configuration is only possible through devicetree. The driver is interrupt driven and supports the I2C_M_IGNORE_NAK mangling bit. Tested on the Radxa Rock board, which is based on RK3188. Signed-off-by: Max Schwarz --- changes

Re: [PATCH] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-04-27 Thread Max Schwarz
Hello Heiko, thanks for your comments. > both the grf as well as the bus-idx are rockchip specific, so they should be > prefixed (rockchip,grf, etc) and from my personal taste I would hope we > could invest in an "n" and "e", to make it a full bus-index ;-) I will change the names to rockchip,grf

[PATCH] i2c: add driver for Rockchip RK3xxx SoC I2C adapter

2014-04-27 Thread Max Schwarz
Driver for the native I2C adapter found in Rockchip RK3xxx SoCs. Configuration is only possible through devicetree. The driver is interrupt driven and supports the I2C_M_IGNORE_NAK mangling bit. Tested on the Radxa Rock board, which is based on RK3188. Signed-off-by: Max Schwarz --- For

[PATCH] arc_emac: write initial MAC address from devicetree to hw

2014-04-17 Thread Max Schwarz
The MAC address retrieved from dt was not actually written to the hardware. This meant proper communication was only possible after changing the MAC address. Fix that by always writing the mac address during probing. Signed-off-by: Max Schwarz --- I recently noticed this problem on the Radxa

patch for drivers/sound/sb_card.c to recognize mpu_io bootline parameter

2005-08-21 Thread Georg Schwarz
]; dma = ints[3]; dma16 = ints[4]; + mpu_io = ints[5]; return 1; } I could not find any documentation that would mention sb=, let alone its parameters. If that one exists nonetheless it would of course also have to be complemented. Georg -- Georg Schwarz

Dual Opteron / Kernel Panic

2005-04-07 Thread Marco Schwarz
kernel: Symbols match kernel version 2.4.21. Apr 8 08:40:25 dslxs01neu kernel: Loaded 588 symbols from 21 modules. The machine is still up and running, but 'Kernel panic' seems to be something serious ;-) Can some tell me what these messages mean ? Thanks a lot, Marco Schwarz - To unsubs

2.4.29: Zombies not detected or removed

2005-02-21 Thread Schwarz
Hi everyone, since 2.4.29 we discovered a strange behaviour. Severall tasks are no longer detected as destroyed. means, these tasks have ended but arn't removed from the processlist. An example from today: [EMAIL PROTECTED] ]# date Mon Feb 21 10:14:06 CET 2005 [EMAIL PROTECTED] ]# strace -p 3

Re: 2.4.0 vm BUG (ksymoopsed)

2001-01-10 Thread Ulrich Schwarz
On Wed, Jan 10, 2001 at 09:21:57PM -0200, Marcelo Tosatti wrote: >> kernel BUG at vmscan.c:452! >> invalid operand: > Does reiserfs patch changes vmscan.c ? No, it doesn't. It's strange that the console reported vmscan.c:452 whilst kern.log reports page_alloc.c:74 So long. Ulrich - To u

Re: 2.4.0 vm BUG (ksymoopsed)

2001-01-10 Thread Ulrich Schwarz
2.4.0 (final i586) patched with reiserfs 3.6.25 produced the following BUG: the console report (ksymoopsed): kernel BUG at vmscan.c:452! invalid operand: CPU:0 EIP:0010:[] Using defaults from ksymoops -t elf32-i386 -a i386 EFLAGS: 00010282 eax: 001c ebx: c101322c ecx: c0274

2.4.0 vm BUG

2001-01-10 Thread Ulrich Schwarz
Hi, 2.4.0 (final i386) patched with reiserfs 3.6.25 produced the following BUG: the console reported: kernel BUG at vmscan.c:452! invalid operand: CPU:0 EIP:0010:[] EFLAGS: 00010282 eax: 001c ebx: c101322c ecx: c0274608 edx: esi: c23acc24 edi: c1013210 ebp: 00