Re: [U-Boot] NDS32 toolchain?

2018-06-07 Thread Rick Chen
2018-05-28 14:45 GMT+08:00 Rick Chen : > 2018-05-14 19:16 GMT+08:00 Tom Rini : >> On Mon, May 14, 2018 at 04:31:27PM +0800, Rick Chen wrote: >>> >> > > > > Related, is there a QEMU target for nds32 that we could leverage >>> >> > > >

Re: [U-Boot] [PATCH 1/2] net: Add option to prefer bootp/dhcp serverip

2018-06-06 Thread Rick Chen
> From: Alexander Graf [mailto:ag...@suse.de] > Sent: Wednesday, June 06, 2018 8:32 PM > To: u-boot@lists.denx.de > Cc: Rick Jian-Zhi Chen(陳建志); Joe Hershberger; Simon Glass > Subject: [PATCH 1/2] net: Add option to prefer bootp/dhcp serverip > > Currently we can choose between 2 different types

Re: [U-Boot] [PATCH] ax25: Remove CONFIG_BOOTP_SERVERIP

2018-06-06 Thread Rick Chen
> From: Alexander Graf [mailto:ag...@suse.de] > Sent: Wednesday, June 06, 2018 1:21 AM > To: u-boot@lists.denx.de > Cc: Rick Jian-Zhi Chen(陳建志) > Subject: [PATCH] ax25: Remove CONFIG_BOOTP_SERVERIP > > The config variable CONFIG_BOOTP_SERVERIP indicates on DHCP-TFTP fetches > that the serverip

Re: [U-Boot] [PATCH] riscv: Add support for HI20 PE relocations

2018-06-06 Thread Rick Chen
2018-06-06 17:18 GMT+08:00 Alexander Graf : > > > On 06.06.18 11:15, Rick Chen wrote: >>> -Original Message- >>> From: Alexander Graf [mailto:ag...@suse.de] >>> Sent: Wednesday, June 06, 2018 1:21 AM >>> To: u-boot@lists.denx.de >>>

Re: [U-Boot] [PATCH] riscv: Add support for HI20 PE relocations

2018-06-06 Thread Rick Chen
> -Original Message- > From: Alexander Graf [mailto:ag...@suse.de] > Sent: Wednesday, June 06, 2018 1:21 AM > To: u-boot@lists.denx.de > Cc: Rick Jian-Zhi Chen(陳建志) > Subject: [PATCH] riscv: Add support for HI20 PE relocations > > The PE standard allows for HI20/LOW12 relocations. Within

Re: [U-Boot] NDS32 toolchain?

2018-05-28 Thread Rick Chen
2018-05-14 19:16 GMT+08:00 Tom Rini <tr...@konsulko.com>: > On Mon, May 14, 2018 at 04:31:27PM +0800, Rick Chen wrote: >> >> > > > > Related, is there a QEMU target for nds32 that we could leverage >> >> > > > > so that once the toolchain

Re: [U-Boot] NDS32 toolchain?

2018-05-14 Thread Rick Chen
>> > > > > Related, is there a QEMU target for nds32 that we could leverage >> > > > > so that once the toolchain issue is resolved we can update >> > > > > .travis.yml to run >> > > tests on it? >> > > > > Thanks! >> > > > >> > > > I am applying the QEMU offering permit. >> > > > If it is ok. I

Re: [U-Boot] [PATCH v3 0/8] riscv: Enable efi_loader support

2018-05-10 Thread Rick Chen
2018-05-10 15:00 GMT+08:00 Rick Chen <rickche...@gmail.com>: > 2018-05-10 14:03 GMT+08:00 Alexander Graf <ag...@suse.de>: >> >> >> Am 10.05.2018 um 05:27 schrieb Rick Chen <rickche...@gmail.com>: >> >>>>> >>>>> Then I think

Re: [U-Boot] [PATCH v3 0/8] riscv: Enable efi_loader support

2018-05-10 Thread Rick Chen
2018-05-10 14:03 GMT+08:00 Alexander Graf <ag...@suse.de>: > > > Am 10.05.2018 um 05:27 schrieb Rick Chen <rickche...@gmail.com>: > >>>> >>>> Then I think if I don't want enter this auto flow, what can I do ? >>>> >>>> 1 Remo

Re: [U-Boot] [PATCH v3 0/8] riscv: Enable efi_loader support

2018-05-09 Thread Rick Chen
> > > > Then I think if I don't want enter this auto flow, what can I do ? > > > > 1 Remove CONFIG_DISTRO_DEFAULTS=y from nx25-ae250_defconfig But it > > still enter auto flow. > > > > 2 Add #ifdef CONFIG_DISTRO_DEFAULTS to encapsulate the > > CONFIG_EXTRA_ENV_SETTINGS in nx25-ae250.h And Remove

[U-Boot] [PATCH v3 4/4] dt-bindings: timer: Add andestech atcpit100 timer

2017-11-27 Thread Rick Chen
Add a document to describe Andestech atcpit100 timer and binding information. Signed-off-by: rick <r...@andestech.com> Signed-off-by: Rick Chen <rickche...@gmail.com> Reviewed-by: Simon Glass <s...@chromium.org> --- doc/device-tree-bindings/timer/atcpit

[U-Boot] [PATCH v3 2/4] cosmetic: atcpit100_timer: Rename function name as atcpit100

2017-11-27 Thread Rick Chen
Integrate function and struct name as atcpit100 will be more reasonable. Signed-off-by: rick <r...@andestech.com> Signed-off-by: Rick Chen <rickche...@gmail.com> --- drivers/timer/atcpit100_timer.c | 34 +- 1 file changed, 17 insertions(+), 17 deleti

[U-Boot] [PATCH v3 3/4] cosmetic: atcpit100_timer: Use device api to get platdata

2017-11-27 Thread Rick Chen
Use dev_get_platdata to get private platdata. Signed-off-by: rick <r...@andestech.com> Signed-off-by: Rick Chen <rickche...@gmail.com> --- drivers/timer/atcpit100_timer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/timer/atcpit100_timer.c b/d

[U-Boot] [PATCH v3 0/4] Rename AE3XX timer to ATCPIT100

2017-11-27 Thread Rick Chen
Changelog v3 - Patch 1/4: No change. - Patch 2/4: No change. - Patch 3/4: New. - Patch 4/4: No change. Patch 3/4 1. Use dev_get_platdata to get dev private platdata. Rick Chen (4): ae3xx: timer: Rename AE3XX to ATCPIT100 cosmetic: atcpit100_timer: Rename function name

[U-Boot] [PATCH v3 3/4] cosmetic: atcpit100_timer: Use device api to get platdata

2017-11-27 Thread Rick Chen
Use dev_get_platdata to get private platdata. Signed-off-by: rick <r...@andestech.com> Signed-off-by: Rick Chen <rickche...@gmail.com> --- drivers/timer/atcpit100_timer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/timer/atcpit100_timer.c b/d

[U-Boot] [PATCH v3 1/4] ae3xx: timer: Rename AE3XX to ATCPIT100

2017-11-27 Thread Rick Chen
ATCPIT100 is Andestech timer IP which is embeded in AE3XX and AE250 boards. So rename AE3XX to ATCPIT100 will be more make sence. Signed-off-by: rick <r...@andestech.com> Signed-off-by: Rick Chen <rickche...@gmail.com> Reviewed-by: Simon Glass <s...@chromium.org> --- configs/a

[U-Boot] [PATCH v3 4/4] dt-bindings: timer: Add andestech atcpit100 timer

2017-11-27 Thread Rick Chen
Add a document to describe Andestech atcpit100 timer and binding information. Signed-off-by: rick <r...@andestech.com> Signed-off-by: Rick Chen <rickche...@gmail.com> Reviewed-by: Simon Glass <s...@chromium.org> --- doc/device-tree-bindings/timer/atcpit

[U-Boot] [PATCH v3 2/4] cosmetic: atcpit100_timer: Rename function name as atcpit100

2017-11-27 Thread Rick Chen
Integrate function and struct name as atcpit100 will be more reasonable. Signed-off-by: rick <r...@andestech.com> Signed-off-by: Rick Chen <rickche...@gmail.com> --- drivers/timer/atcpit100_timer.c | 34 +- 1 file changed, 17 insertions(+), 17 deleti

[U-Boot] [PATCH v3 0/4] Rename AE3XX timer to ATCPIT100

2017-11-27 Thread Rick Chen
Changelog v3 - Patch 1/4: No change. - Patch 2/4: No change. - Patch 3/4: New. - Patch 4/4: No change. Patch 3/4 1. Use dev_get_platdata to get dev private platdata. Rick Chen (4): ae3xx: timer: Rename AE3XX to ATCPIT100 cosmetic: atcpit100_timer: Rename function name

[U-Boot] [PATCH v3 1/4] ae3xx: timer: Rename AE3XX to ATCPIT100

2017-11-27 Thread Rick Chen
ATCPIT100 is Andestech timer IP which is embeded in AE3XX and AE250 boards. So rename AE3XX to ATCPIT100 will be more make sence. Signed-off-by: rick <r...@andestech.com> Signed-off-by: Rick Chen <rickche...@gmail.com> Reviewed-by: Simon Glass <s...@chromium.org> --- configs/a

<    3   4   5   6   7   8