Re: [PATCH 1/5] drivers: rtc: add rv3032 driver

2023-08-30 Thread Alexandre Belloni
if (ret) > + goto exit_eerd; > + > + cmd = RV3032_EEPROM_CMD_READ; > + ret = dm_i2c_write(dev, RV3032_EEPROM_CMD, > +, 1); > + if (ret) > + goto exit_eerd; > +

Re: [PATCH] rtc: add support for rv3028 rtc

2021-03-09 Thread Alexandre Belloni
> obj-$(CONFIG_RTC_RV8803) += rv8803.o > > obj-$(CONFIG_RTC_RX8025) += rx8025.o > > diff --git a/drivers/rtc/rv3028.c b/drivers/rtc/rv3028.c > > new file mode 100644 > > index 00..8d8336c5f1 > > --- /dev/null > > +++ b/drivers/rtc/rv3028.c > &g

Re: [U-Boot] [PATCH 2/6] MSCC: add support for VCoreIII SoCs

2018-09-27 Thread Alexandre Belloni
0 */ > >> +writel(0, REG_CFG(ICPU_INTR_ENA)); > >> +#ifdef CONFIG_SOC_OCELOT > >> +writel(~0, REG_CFG(ICPU_DST_INTR_MAP(0))); > >> +writel(0, REG_CFG(ICPU_DST_INTR_MAP(1))); > >> +writel(0, REG_CFG(ICPU_DST_INTR_MAP(2))); >

Re: [U-Boot] [PATCH] DW SPI: Allow to overload the management of the external CS

2018-09-25 Thread Alexandre Belloni
IO) && !defined(CONFIG_SPL_BUILD) > struct dw_spi_priv *priv = dev_get_priv(dev->parent); > -- > 2.19.0 > -- Alexandre Belloni, Bootlin Embedded Linux and Kernel engineering https://bootlin.com ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v2 1/4] ARM: at91: add cpu.h

2015-08-11 Thread Alexandre Belloni
on an older version of the driver and you will be missing future fixes. -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/3] ARM: at91: add cpu.h

2015-07-22 Thread Alexandre Belloni
list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] imx6, spl and falcon boot

2013-02-20 Thread Alexandre Belloni
, do you have any numbers for QNX? I didn't try that either. Regards, -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] imx6, spl and falcon boot

2013-02-19 Thread Alexandre Belloni
but it was not clearly stated that using u-boot was mandatory in the first mail ;) Anyway, last time I looked, SPL was not supported on i.mx6, is it now ? -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo

Re: [U-Boot] imx6, spl and falcon boot

2013-02-19 Thread Alexandre Belloni
and probably won't be. Some people will argue that you probably don't need a bootloader once you are able to boot a linux kernel as you can probably do everything you want from there. -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] imx6, spl and falcon boot

2013-02-19 Thread Alexandre Belloni
On Tue, Feb 19, 2013 at 12:35:01PM +0100, Wolfgang Denk wrote : Dear Alexandre Belloni, In message 20130219112532.gb24...@piout.net you wrote: No, that is not supported and probably won't be. Some people will argue I think you are wrong. This is definitely a not supported _yet_

Re: [U-Boot] imx6, spl and falcon boot

2013-02-19 Thread Alexandre Belloni
://www.elinux.org/images/d/d1/Alexandre_Belloni_boottime_optimizations.pdf [2] https://www.youtube.com/watch?v=KPU4_QVPFZ0 Regards, -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] imx6, spl and falcon boot

2013-02-18 Thread Alexandre Belloni
at that bootloader (it is actually much less than that): https://github.com/alexandrebelloni/whoosh It supports sabrelite and sabresd, it should be quite fast to port to nitrogen6x. I can do it but I don't have access to the hardware...yet. Regards, -- Alexandre Belloni

Re: [U-Boot] where would i find the u-boot repo with TI DM8148 support?

2012-11-08 Thread Alexandre Belloni
Regards, -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v6] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-07-02 Thread Alexandre Belloni
is: bootstrap 0x ubootenv 0x4200 uboot 0x8400 kernel 0x00084000 Signed-off-by: Alexandre Belloni alexandre.bell...@piout.net --- Changes for v2: - changed the layout as per Marek's recommendation Changes for v3: - prefixed the patch title with AT91SAM9*: Changes for v4

Re: [U-Boot] [PATCH v6] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-07-02 Thread Alexandre Belloni
dataflash and my rootfs is in NAND. The kernel is around 1.7MiB using the default configuration. Maybe, we should also extend its partition ? Best regards Andreas Bießmann -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [PATCH v6] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-07-02 Thread Alexandre Belloni
Actually, the 9rlek, 9260ek and 9261ek have a 4MiB dataflash and the 9263ek doesn't have an embedded dataflash. I guess I'll change the mapping to still get 2MiB for the kernel. regards, -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http

[U-Boot] [PATCH v7] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-07-02 Thread Alexandre Belloni
. Now, the layout is: bootstrap 0x ubootenv 0x4200 uboot 0x8400 kernel 0x00084000 fs 0x00294000 Signed-off-by: Alexandre Belloni alexandre.bell...@piout.net --- Changes for v2: - changed the layout as per Marek's recommendation Changes for v3: - prefixed the patch

Re: [U-Boot] [PATCH v4] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-04-21 Thread Alexandre Belloni
. It seems to be working well on my board. I'm really interested in getting mainline working well. I know there is not much interest in the AT91 boards now but I would really like to see that issue fixed. Regards, -- Alexandre Belloni ___ U-Boot mailing

[U-Boot] [PATCH v5] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-04-21 Thread Alexandre Belloni
is: bootstrap 0x ubootenv 0x4200 uboot 0x8400 kernel 0x00084000 Signed-off-by: Alexandre Belloni alexandre.bell...@piout.net --- Changes for v2: - changed the layout as per Marek's recommendation Changes for v3: - prefixed the patch title with AT91SAM9*: Changes for v4

[U-Boot] [PATCH v4] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-04-08 Thread Alexandre Belloni
is: bootstrap 0x ubootenv 0x4200 uboot 0x8400 kernel 0x00084000 Signed-off-by: Alexandre Belloni alexandre.bell...@piout.net --- Changes for v2: - changed the layout as per Marek's recommendation Changes for v3: - prefixed the patch title with AT91SAM9

Re: [U-Boot] [PATCH v3] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-02-29 Thread Alexandre Belloni
shouldn't we reorder u-boot and its env ? Because it adds problems without any benefits. When I looked the last time, the environment is only 8 pages, So you can fit a redundant environment anyway in 16 kB+} -- Alexandre Belloni ___ U-Boot

Re: [U-Boot] [PATCH v3] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-02-28 Thread Alexandre Belloni
On Mon, Feb 27, 2012 at 04:25:02PM +0100, Ulf Samuelsson wrote : On 2012-02-20 17:40, Alexandre Belloni wrote: On at91sam platforms, u-boot grew larger than the allocated size in dataflash, the layout was: bootstrap 0x ubootenv 0x4200 uboot 0x8400 kernel

Re: [U-Boot] [PATCH v2] Change kernel address in dataflash to match u-boot's size

2012-02-20 Thread Alexandre Belloni
less. My board has 8MB of dataflash, I couldn't find what size is available on other evaluation kits... Regards, -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-02-20 Thread Alexandre Belloni
is: bootstrap 0x uboot 0x4000 ubootenv 0x00084000 ubootenv2 0x00088000 kernel 0x0008C000 Signed-off-by: Alexandre Belloni alexandre.bell...@piout.net --- include/configs/at91sam9260ek.h | 18 -- include/configs/at91sam9261ek.h | 18 -- include

Re: [U-Boot] [PATCH v2] Change kernel address in dataflash to match u-boot's size

2012-02-20 Thread Alexandre Belloni
On Mon, Feb 20, 2012 at 11:46:58AM +0100, Albert ARIBAUD wrote : Hmm... With 8MByte FLASH the proposed mapping leaves 7+ MB for the flashed kernel, which should be enough :) so that's ok. Ok then, I just prefixed the patch title with AT91SAM9*: Regards, -- Alexandre Belloni

[U-Boot] [PATCH v3] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-02-20 Thread Alexandre Belloni
is: bootstrap 0x uboot 0x4000 ubootenv 0x00084000 ubootenv2 0x00088000 kernel 0x0008C000 Signed-off-by: Alexandre Belloni alexandre.bell...@piout.net --- Changes for v2: - changed the layout as per Marek's recommendation Changes for v3: - prefixed the patch title

[U-Boot] [PATCH v2] Change kernel address in dataflash to match u-boot's size

2012-01-29 Thread Alexandre Belloni
is: bootstrap 0x uboot 0x4000 ubootenv 0x00084000 ubootenv2 0x00088000 kernel 0x0008C000 Signed-off-by: Alexandre Belloni alexandre.bell...@piout.net --- include/configs/at91sam9260ek.h | 18 -- include/configs/at91sam9261ek.h | 18 -- include

Re: [U-Boot] [PATCH] Change kernel address in dataflash to match u-boot's size

2012-01-02 Thread Alexandre Belloni
is around 4k. I'll try a new layout and come back with a proposal. I'll also check that it fits in most dataflash sizes. -- Alexandre Belloni ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] Change kernel address in dataflash to match u-boot's size

2012-01-01 Thread Alexandre Belloni
0x44000 will make the process easier for users using the default configuration but they'll have to remember to flash the kernel at 0x44000. Signed-off-by: Alexandre Belloni alexandre.bell...@piout.net --- include/configs/at91sam9260ek.h |4 ++-- include/configs/at91sam9261ek.h |4