Re: [U-Boot] [PATCH 2/3] net/designware: invalidate entire descriptor in dw_eth_send

2014-04-24 Thread Stefan Monnier
> 1. Don't invalidate "sizeof(struct dmamacdescr)" but only > "roundup(sizeof(desc_p->txrx_status), ARCH_DMA_MINALIGN))". I'm not sure I like this: if ARCH_DMA_MINALIGN is "too large" and ends up invalidating more than the struct, it could be an error, so it's safer to ask it to invalidate the str

[U-Boot] 2TB disks

2015-08-19 Thread Stefan Monnier
I just bumped into a problem where U-Boot refused to boot from my disk's second partition because the sector number is "negative". More specifically, my disk drive is 2TB, which means that the number of 512B blocks fits into an unsigned 32bit int but not into a signed 32bit int. U-boot's "scsi par

[U-Boot] [PATCH] Don't wrap to negative after 2G sectors

2015-08-25 Thread Stefan Monnier
Signed-off-by: Stefan Monnier --- disk/part_dos.c | 29 + include/ide.h | 8 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/disk/part_dos.c b/disk/part_dos.c index cf1a36e..adde68a 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c

[U-Boot] Fix wrap around bug in MBR sector counts

2015-11-25 Thread Stefan Monnier
I just bumped into a problem where U-Boot refused to boot from my disk's second partition because the sector number is "negative". More specifically, my disk drive is 2TB, which means that the number of 512B blocks fits into an unsigned 32bit int but not into a signed 32bit int. U-boot's "scsi par

[U-Boot] [PATCH] Don't wrap to negative after 2G sectors

2015-11-25 Thread Stefan Monnier
Signed-off-by: Stefan Monnier --- disk/part_dos.c | 29 + include/ide.h | 8 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/disk/part_dos.c b/disk/part_dos.c index 89263d3..6280660 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c

Re: [U-Boot] [PATCH] Don't wrap to negative after 2G sectors

2015-09-03 Thread Stefan Monnier
Ping? Stefan >>>>> "Stefan" == Stefan Monnier writes: > Signed-off-by: Stefan Monnier > --- > disk/part_dos.c | 29 + > include/ide.h | 8 > 2 files changed, 21 insertions(+), 16 deletions(-) > dif

Re: [U-Boot] [PATCH] Don't wrap to negative after 2G sectors

2015-09-08 Thread Stefan Monnier
Any chance this can make it into 2015.10? Stefan >>>>> "Stefan" == Stefan Monnier writes: > Signed-off-by: Stefan Monnier > --- > disk/part_dos.c | 29 + > include/ide.h | 8 > 2 files changed, 21 inse

Re: [U-Boot] [PATCH] Don't wrap to negative after 2G sectors

2015-10-03 Thread Stefan Monnier
I haven't received any answer from anyone about my patch. What am I doing wrong? Stefan >>>>> "Stefan" == Stefan Monnier writes: > Signed-off-by: Stefan Monnier > --- > disk/part_dos.c | 29 + > include/id

Re: [U-Boot] [PATCH] Don't wrap to negative after 2G sectors

2016-01-12 Thread Stefan Monnier
Ping yet again!? Stefan >>>>> "Stefan" == Stefan Monnier writes: > Signed-off-by: Stefan Monnier > --- > disk/part_dos.c | 29 + > include/ide.h | 8 > 2 files changed, 21 insertions(+), 16 deletions(-

[U-Boot] Reboot and audio on Orange Pi mini (was: [linux-sunxi] Re: [PATCH v3 0/9] Stop AXP from crashing when enabling LDO3)

2018-11-25 Thread Stefan Monnier
> Well, f you have the hardware, then there's only one way to find out: > > 1) Apply patchset > 2) Add following into boards defconfig: > CONFIG_AXP_ALDO3_INRUSH_QUIRK=y > 3) If it still fails to reboot, add following > CONFIG_AXP_ALDO3_VOLT_SLOPE_08=y Hmm... I tried it and it worked: it now reboo

Re: [U-Boot] [PATCH] Don't wrap to negative after 2G sectors

2016-01-13 Thread Stefan Monnier
>> Signed-off-by: Stefan Monnier > Sorry for the delay: > Reviewed-by: Tom Rini Great, thank you! Stefan ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

HDMI support for rockchip SBC

2025-07-23 Thread Stefan Monnier
[ AFAICT this mailing-list is used for development of U-Boot more than for users of U-Boot. I s there a more appropriate mailing-list, for users? ] I'm building the bootloader for two different SBCs, both based on rk3568 (NanoPi R5S and Odroid-M1), and using the default config for those boar

Re: HDMI support for rockchip SBC

2025-07-24 Thread Stefan Monnier
> Support for the rk35xx isn't upstream yet, Ah... I didn't notice any weird failure or warnings during the build so I naively assumed it was working. > this patch series is likely a good start: > https://lists.denx.de/pipermail/u-boot/2025-June/591737.html Thanks. Is there a place that tracks

Bootable partitions in GPT

2025-07-26 Thread Stefan Monnier
AFAICT, U-Boot relies on the "Legacy BIOS bootable" attribute to decide whether a GPT partition should be among the partitions it searches for bootflows. AFAICT it's being deprecated in many tools: e.g. under Debian, neither `gdisk -l` nor `fdisk -l` display that information, I can't find any way