Re: [PATCH] mtd: spi-nor: winbond: add w25q01jv flash chip

2024-12-16 Thread Wilken Gottwalt
On Mon, 16 Dec 2024 08:22:45 -0500 David Malcolm wrote: > On Mon, 2024-12-16 at 11:26 +0000, Wilken Gottwalt wrote: > > Add Winbond W25Q01JV 128 MiB SPI NOR flash chip, verified working on > > the > > Zynq-7000 platform QSPI controller. The flash chip has quite high > >

[PATCH] mtd: spi-nor: winbond: add w25q01jv flash chip

2024-12-16 Thread Wilken Gottwalt
Add Winbond W25Q01JV 128 MiB SPI NOR flash chip, verified working on the Zynq-7000 platform QSPI controller. The flash chip has quite high read speeds (about 60+ MiB/s), but erasing is very slow. The slow erasing is by design. Signed-off-by: Wilken Gottwalt --- drivers/mtd/spi-nor/winbond.c | 6

[PATCH] gm2: fix bad programming practice warning

2024-12-08 Thread Wilken Gottwalt
d ‘in’) 51 |in, out: File ; m2/m2log/InOut.mod:51:18: note: the symbol name ‘in’ is legal as an identifier, however as such it might cause confusion and is considered bad programming practice gcc/gm2: * gm2-libs-log/InOut.mod: Fix bad identifier warning. Signed-off-by: Wilken Got

[PATCH] libgccjit: Remove obsolete texinfo statements

2024-08-26 Thread Wilken Gottwalt
Remove texinfo statements which are obsolete for a while now. libgccjit.texi:18: warning: @definfoenclose is obsolete libgccjit.texi:19: warning: @definfoenclose is obsolete gcc/jit: * docs/_build/texinfo/libgccjit.texi: Remove obsolete texinfo statements. Signed-off-by: Wilken

[PATCH] gm2: export all libc number conversion functions

2024-08-20 Thread Wilken Gottwalt
Export all string to integral and floating point number conversion functions (atof, atoi, atol, atoll, strtod, strtof, strtold, strtol, strtoll, strtoul, strtoull). gcc/gm2: * gm2-libs/libc.def: Export all string to number conversion functions. Signed-off-by: Wilken Gottwalt --- gcc/m2

Re: [PATCH] gm2: add missing debug output guard

2024-08-10 Thread Wilken Gottwalt
On Sat, 10 Aug 2024 13:43:33 +0200 (CEST) Gerald Pfeifer wrote: > On Tue, 23 Jul 2024, Gaius Mulley wrote: > >> gcc/gm2: > >>* gm2-libs-iso/MemStream.mod: Guard debug output. > > many thanks! > > I noticed this has not been pushed yet and believe Wilken does not have > write/push access - s

[PATCH] gm2: fix bad programming practice warning

2024-07-24 Thread Wilken Gottwalt
ff-by: Wilken Gottwalt --- gcc/m2/gm2-libs-iso/StdChans.mod | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/gcc/m2/gm2-libs-iso/StdChans.mod b/gcc/m2/gm2-libs-iso/StdChans.mod index fbefbde4b10..e15d4ef9580 100644 --- a/gcc/m2/gm2-libs-iso/StdChans.mod

[PATCH] gm2: fix bad programming practice identifier warning

2024-07-23 Thread Wilken Gottwalt
1358 |start, end, o: INTEGER ; m2pim/DynamicStrings.mod:1358:27: note: either the identifier has the same name as a keyword or alternatively a keyword has the wrong case (‘END’ and ‘end’) gcc/gm2: * gm2-libs/DynamicStrings.mod: Fix bad identifier warning. Signed-off-by: Wilken Got

[PATCH] gm2: add missing debug output guard

2024-07-21 Thread Wilken Gottwalt
The Close() procedure in MemStream is missing a guard to prevent it from printing in non-debug mode. gcc/gm2: * gm2-libs-iso/MemStream.mod: Guard debug output. Signed-off-by: Wilken Gottwalt --- gcc/m2/gm2-libs-iso/MemStream.mod | 5 - 1 file changed, 4 insertions(+), 1 deletion