Re: [U-Boot] [PATCH] arm:board:h2200: Add CONFIG_SYS_GENERIC_BOARD

2014-06-12 Thread Łukasz Dałek
On 12.06.2014 14:58, Marek Vasut wrote: On Thursday, June 12, 2014 at 12:46:53 AM, Lukasz Dalek wrote: Signed-off-by: Lukasz Dalek A commit message would be nice. btw. do you think this would work on other PXA boards ? No idea. Best regards, Marek Vasut Lukasz D.

Re: [U-Boot] [PATCH 2/2] usb: gadget: Use unaligned access for wMaxPacketSize

2013-05-13 Thread Łukasz Dałek
On 13.05.2013 12:23, Vivek Gautam wrote: Use get_unaligned() while fetching wMaxPacketSize to avoid voilating any alignment rules. Signed-off-by: Vivek Gautam Cc: Lukasz Majewski Cc: Piotr Wilczek Cc: Kyungmin Park Cc: Lukasz Dalek Cc: Marek Vasut --- Just did a build test on u-boot-usb/m

Re: [U-Boot] [PATCH] pxa25x_udc: Remove usbdescriptors.h

2012-11-29 Thread Łukasz Dałek
d you before patch which enables support for USB in h2200 device, which you accepted but didn't push. Did you find more problem out there or just forgot to apply? Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/

Re: [U-Boot] [PATCH 3/3] pxa25x: Add USB ethernet gadget driver

2012-08-17 Thread Łukasz Dałek
On 17.08.2012 22:57, Marek Vasut wrote: + /* let loose that packet. maybe try writing another one, Wrong comment , fix globally ... doens't checkpatch catch those? no +* double buffering might work. TSP, TPC, and TFS +* bit values are the same for all normal IN

Re: [U-Boot] [PATCH 2/3] pxa25x: Add UDC registers definitions

2012-08-17 Thread Łukasz Dałek
On 17.08.2012 22:50, Marek Vasut wrote: Dear Łukasz Dałek, + /* UDC Endpoint Control/Status Registers */ + uint32_tudccs0; /* 0x010 */ + uint32_tudccs1; /* 0x014 */ + uint32_tudccs2; /* 0x018 */ + uint32_tudccs3; /* 0x01c

Re: [U-Boot] [PATCH 1/3] usbether: Fixed bug when using with PXA25X chips

2012-08-17 Thread Łukasz Dałek
On 17.08.2012 22:48, Marek Vasut wrote: Dear Łukasz Dałek, PXA25X chips don't support alternate settings so code in ether.c disables usage of CDC. But only code defined between DEV_CONFIG_CDC signals that network is up. This patch is fixing this bug by addding pxa_connect_gadget() whi

[U-Boot] [PATCH 1/2] pxa25x: Add UDC registers definitions

2012-08-18 Thread Łukasz Dałek
Signed-off-by: Łukasz Dałek --- arch/arm/include/asm/arch-pxa/regs-usb.h | 160 ++ 1 files changed, 160 insertions(+), 0 deletions(-) create mode 100644 arch/arm/include/asm/arch-pxa/regs-usb.h diff --git a/arch/arm/include/asm/arch-pxa/regs-usb.h b/arch/arm

[U-Boot] [PATCH 0/2] PXA25x: USB ethernet driver

2012-08-21 Thread Łukasz Dałek
I've moved cpu revision detection to arch/arm/cpu/pxa as you suggest. Cleaned ethernet driver. Soon I would also send patches for drivers/usb/gadget/ether.c to work correctly with this pxa driver. Łukasz Dałek (2): pxa: Add some stuff to examine cpu model and rev pxa25x: Add USB eth

[U-Boot] [PATCH 1/2] pxa: Add some stuff to examine cpu model and rev

2012-08-21 Thread Łukasz Dałek
Signed-off-by: Łukasz Dałek --- arch/arm/cpu/pxa/cpuinfo.c | 11 +-- arch/arm/include/asm/arch-pxa/pxa.h | 13 + 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/pxa/cpuinfo.c b/arch/arm/cpu/pxa/cpuinfo.c index f1cdd40..bab6340 100644

Re: [U-Boot] [PATCH 0/2] PXA25x: USB ethernet driver

2012-08-30 Thread Łukasz Dałek
On 30.08.2012 21:09, Marek Vasut wrote: Dear Łukasz Dałek, I've moved cpu revision detection to arch/arm/cpu/pxa as you suggest. Cleaned ethernet driver. Soon I would also send patches for drivers/usb/gadget/ether.c to work correctly with this pxa driver. Łukasz Dałek (2): pxa: Add

Re: [U-Boot] [PATCH 0/2] PXA25x: USB ethernet driver

2012-08-30 Thread Łukasz Dałek
On 31.08.2012 00:04, Marek Vasut wrote: Dear Łukasz Dałek, On 30.08.2012 21:09, Marek Vasut wrote: Dear Łukasz Dałek, I've moved cpu revision detection to arch/arm/cpu/pxa as you suggest. Cleaned ethernet driver. Soon I would also send patches for drivers/usb/gadget/ether.c to

[U-Boot] [PATCH 0/6] iPAQ h2200 support

2012-09-19 Thread Łukasz Dałek
ed or sth. If so I'm sorry for sending it again. Łukasz Dałek (6): h2200: Add support for iPAQ h2200 pxa25x: Add USB Ethernet driver pxa: Add some stuff to examine cpu model and rev usbether: Fixed bug when using with PXA25X chips usbether: Define CONFIG_USB_ETH_{CDC,SUBSET} usbet

[U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-19 Thread Łukasz Dałek
Signed-off-by: Łukasz Dałek --- arch/arm/include/asm/mach-types.h |1 + board/h2200/Makefile | 51 ++ board/h2200/h2200-header.S| 27 + board/h2200/h2200.c | 197 + board/h2200/h2200.h

[U-Boot] [PATCH 3/6] pxa: Add some stuff to examine cpu model and rev

2012-09-19 Thread Łukasz Dałek
Signed-off-by: Łukasz Dałek --- arch/arm/cpu/pxa/cpuinfo.c | 11 +-- arch/arm/include/asm/arch-pxa/pxa.h | 13 + 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/pxa/cpuinfo.c b/arch/arm/cpu/pxa/cpuinfo.c index f1cdd40..bab6340 100644

[U-Boot] [PATCH 4/6] usbether: Fixed bug when using with PXA25X chips

2012-09-19 Thread Łukasz Dałek
PXA25X chips don't support alternate settings so driver uses non-CDC driver. But only code defined between DEV_CONFIG_CDC signals that network is up. This patch is fixing this bug by signaling that network is up after USB SET_INTERFACE request. Signed-off-by: Łukasz Dałek --- drivers/usb/g

[U-Boot] [PATCH 5/6] usbether: Define CONFIG_USB_ETH_{CDC,SUBSET}

2012-09-19 Thread Łukasz Dałek
Introduced CONFIG_USB_ETH_CDC and CONFIG_USB_ETH_SUBSET as preparation for removal DEV_CONFIG_CDC and DEV_CONFIG_SUBSET Signed-off-by: Łukasz Dałek --- drivers/usb/gadget/ether.c | 19 ++- 1 files changed, 14 insertions(+), 5 deletions(-) diff --git a/drivers/usb/gadget

[U-Boot] [PATCH 6/6] usbether: Removed DEV_CONFIG_{CDC,SUBSET}

2012-09-19 Thread Łukasz Dałek
Removed DEV_CONFIG_CDC and DEV_CONFIG_SUBSET and replaced it with CONFIG_USB_ETH_CDC and CONFIG_USB_ETH_SUBSET. Signed-off-by: Łukasz Dałek --- drivers/usb/gadget/ether.c | 75 +-- 1 files changed, 30 insertions(+), 45 deletions(-) diff --git a/drivers

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-19 Thread Łukasz Dałek
(arm instruction b 0x1000) GCC/GAS won't generate it so you use .word ? No. GCC generates sth else than 0xea0003fe. Try b 0x9098 ... is that it ? Yes, GCC/GAS generate 0xeafe (b 0x9098). Can you tell me why? Can I left .word? Łukasz Dałek

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-19 Thread Łukasz Dałek
now how to fix it (without .word). Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-19 Thread Łukasz Dałek
On 20.09.2012 00:42, Marek Vasut wrote: Dear Łukasz Dałek, On 20.09.2012 00:01, Marek Vasut wrote: Yes, GCC/GAS generate 0xeafe (b 0x9098). Can you tell me why? Can I left .word? Why is the jump offset 0x9098 ? I figured out that 0xeafe is a loop (b -4) ldr pc, pc, #-4 but I

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-19 Thread Łukasz Dałek
ive or I can not. Another question: I asked in cover letter question about tools. Can I add them in h2200 directory or should I put them somwhere else? I didn't receive the cover letter. Weird, I sent it with patches. With your address in CC field. Btw. Did you g

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-19 Thread Łukasz Dałek
On 20.09.2012 01:09, Marek Vasut wrote: Dear Łukasz Dałek, On 20.09.2012 00:56, Marek Vasut wrote: That's why I use directive .word 0xea0003fe Check some arm instruction quick ref for what 0xea0003fe really is and if it really is necessary or anything else work just fine as well. 0xea0

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-19 Thread Łukasz Dałek
On 20.09.2012 01:25, Marek Vasut wrote: Dear Łukasz Dałek, On 20.09.2012 01:09, Marek Vasut wrote: Dear Łukasz Dałek, On 20.09.2012 00:56, Marek Vasut wrote: That's why I use directive .word 0xea0003fe Check some arm instruction quick ref for what 0xea0003fe really is and if it real

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-19 Thread Łukasz Dałek
ta busses limited to 16bytes. Really weird and buggy thing. Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-22 Thread Łukasz Dałek
, any mac address setting should not be present, Joe ? So tell me how should I specify mac addresses? By EXTRA_ENV_SETTINGS? Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-22 Thread Łukasz Dałek
On 22.09.2012 19:04, Marek Vasut wrote: Dear Łukasz Dałek, On 19.09.2012 23:02, Marek Vasut wrote: and at the offset + * 0x40 ascii characters 'ECEC', secondly 1st stage + * loads code from flash into SDRAM at address 0xa004 + * so all instructions which reinitiali

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-22 Thread Łukasz Dałek
On 22.09.2012 20:00, Marek Vasut wrote: Dear Łukasz Dałek, On 22.09.2012 19:04, Marek Vasut wrote: Dear Łukasz Dałek, On 19.09.2012 23:02, Marek Vasut wrote: and at the offset + * 0x40 ascii characters 'ECEC', secondly 1st stage + * loads code from flash into SDRAM at address

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-22 Thread Łukasz Dałek
board calls the dram init on it's own in dram_init() ... so just don't do that. Do what? Don't call modified pxa2xx_dram_init? What exactly do you need to do ? What registers do you need to set ? How come the bootloader kick dram in, but won't configure MSC ? Split out the MSC con

Re: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200

2012-09-22 Thread Łukasz Dałek
On 22.09.2012 20:37, Marek Vasut wrote: Dear Łukasz Dałek, On 22.09.2012 20:21, Marek Vasut wrote: +{ + writel(val, addr); + asm volatile("" : : : "memory"); + readl(addr); + asm volatile("" : : : "memory"); +} + +static void

Re: [U-Boot] [PATCH v2 2/6] pxa25x: Add support for USB ethernet gadget

2012-09-23 Thread Łukasz Dałek
Best regards, Marek Vasut Everything was fine except DEBUG_NOISY defintions. I fixed them and I have resend patch. Can I ask what about patches 3,4,5,6? Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 2/6] pxa25x: Add support for USB ethernet gadget

2012-09-23 Thread Łukasz Dałek
On 23.09.2012 20:24, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 17:44, Marek Vasut wrote: Dear Lukasz Dalek, Add to pxa25x based devices support for USB ethernet gadget. This is a port of pxa25x UDC driver from Linux kernel. Signed-off-by: Lukasz Dalek --- drivers/usb/gadget

Re: [U-Boot] [PATCH v2 1/6] h2200: Add support for iPAQ h2200 palmtop

2012-09-23 Thread Łukasz Dałek
his declaration into h2200.c? Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 1/6] h2200: Add support for iPAQ h2200 palmtop

2012-09-23 Thread Łukasz Dałek
On 23.09.2012 21:31, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 17:43, Marek Vasut wrote: + gd->ram_size = CONFIG_SYS_SDRAM_SIZE; + return 0; +} diff --git a/board/h2200/h2200.h b/board/h2200/h2200.h new file mode 100644 Do you need this file at all? Can

Re: [U-Boot] [PATCH v2 2/6] pxa25x: Add support for USB ethernet gadget

2012-09-23 Thread Łukasz Dałek
On 23.09.2012 21:32, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 20:24, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 17:44, Marek Vasut wrote: Dear Lukasz Dalek, Add to pxa25x based devices support for USB ethernet gadget. This is a port of pxa25x UDC driver from Linux

Re: [U-Boot] [PATCH v2 1/6] h2200: Add support for iPAQ h2200 palmtop

2012-09-23 Thread Łukasz Dałek
On 23.09.2012 22:05, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 21:31, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 17:43, Marek Vasut wrote: + gd->ram_size = CONFIG_SYS_SDRAM_SIZE; + return 0; +} diff --git a/board/h2200/h2200.h b/board/h2200/h2200.h new f

Re: [U-Boot] [PATCH v2 1/6] h2200: Add support for iPAQ h2200 palmtop

2012-09-23 Thread Łukasz Dałek
On 23.09.2012 22:52, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 22:05, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 21:31, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 17:43, Marek Vasut wrote: + gd->ram_size = CONFIG_SYS_SDRAM_SIZE; + retur

Re: [U-Boot] [PATCH v2 1/6] h2200: Add support for iPAQ h2200 palmtop

2012-09-23 Thread Łukasz Dałek
On 23.09.2012 23:04, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 22:52, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 22:05, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 21:31, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 17:43, Marek Vasut wrote

Re: [U-Boot] [PATCH v2 1/6] h2200: Add support for iPAQ h2200 palmtop

2012-09-23 Thread Łukasz Dałek
On 23.09.2012 23:31, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 23:04, Marek Vasut wrote: PXA2xx is OHCI host with one OTG port. From pxa255 documentation: "The UDC supports 16 endpoints and can operate half-duplex at a rate of 12 Mbps (as a slave only, not as a host o

Re: [U-Boot] [PATCH v2 1/6] h2200: Add support for iPAQ h2200 palmtop

2012-09-23 Thread Łukasz Dałek
On 24.09.2012 01:05, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 23:31, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 23:04, Marek Vasut wrote: PXA2xx is OHCI host with one OTG port. From pxa255 documentation: "The UDC supports 16 endpoints and can operate half-d

Re: [U-Boot] [PATCH v2 1/6] h2200: Add support for iPAQ h2200 palmtop

2012-09-23 Thread Łukasz Dałek
On 24.09.2012 01:25, Marek Vasut wrote: Dear Łukasz Dałek, On 24.09.2012 01:05, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 23:31, Marek Vasut wrote: Dear Łukasz Dałek, On 23.09.2012 23:04, Marek Vasut wrote: PXA2xx is OHCI host with one OTG port. From pxa255

Re: [U-Boot] [PATCH v3] h2200: Add support for iPAQ h2200 palmtop

2012-09-26 Thread Łukasz Dałek
+h2200_usbeth arm pxa h2200 - Can you not enable USB ethernet by default? [...] I don't understand. make h2200_config creates config without usb ethernet make h2200_usbeth_config creates config with usb ethernet Łukasz

Re: [U-Boot] [PATCH v3] h2200: Add support for iPAQ h2200 palmtop

2012-09-26 Thread Łukasz Dałek
On 26.09.2012 18:13, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 17:29, Marek Vasut wrote: Dear Lukasz Dalek, Basic support of HP iPAQ h2200 palmtop. Support includes also USB ethernet gadget. Two minor nits ... can you extend the patch description? Signed-off-by: Lukasz Dalek

Re: [U-Boot] [PATCH v3] h2200: Add support for iPAQ h2200 palmtop

2012-09-26 Thread Łukasz Dałek
On 27.09.2012 01:32, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 18:13, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 17:29, Marek Vasut wrote: Dear Lukasz Dalek, Basic support of HP iPAQ h2200 palmtop. Support includes also USB ethernet gadget. Two minor nits ... can you

Re: [U-Boot] [PATCH] usb.h: Add udc_disconnect prototype to usb.h

2012-09-26 Thread Łukasz Dałek
cool if it was meaningful ... like "pxa25x can only do gadget mode, thus the following ... etc". Otherwise, we're basically there. Ok Can you repost the whole patchset please? Whole? Including ethernet driver, pxa cpu detection etc...? If so, I

Re: [U-Boot] [PATCH v3] h2200: Add support for iPAQ h2200 palmtop

2012-09-26 Thread Łukasz Dałek
On 27.09.2012 01:58, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 01:32, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 18:13, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 17:29, Marek Vasut wrote: Dear Lukasz Dalek, Basic support of HP iPAQ h2200 palmtop. Support

Re: [U-Boot] [PATCH] usb.h: Add udc_disconnect prototype to usb.h

2012-09-26 Thread Łukasz Dałek
On 27.09.2012 01:58, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 17:31, Marek Vasut wrote: Dear Lukasz Dalek, PXA25x gadget implements common function usb_disconnect(). This patch adds this function prototype into usb.h for boards using it. [...] +/* + * This isn't host + */

Re: [U-Boot] [PATCH v3] h2200: Add support for iPAQ h2200 palmtop

2012-09-26 Thread Łukasz Dałek
On 27.09.2012 02:07, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 01:58, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 01:32, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 18:13, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 17:29, Marek Vasut wrote: Dear

Re: [U-Boot] [PATCH] usb.h: Add udc_disconnect prototype to usb.h

2012-09-26 Thread Łukasz Dałek
On 27.09.2012 02:06, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 01:58, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 17:31, Marek Vasut wrote: Dear Lukasz Dalek, PXA25x gadget implements common function usb_disconnect(). This patch adds this function prototype into usb.h

Re: [U-Boot] [PATCH] usb.h: Add udc_disconnect prototype to usb.h

2012-09-26 Thread Łukasz Dałek
On 27.09.2012 02:30, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 02:06, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 01:58, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 17:31, Marek Vasut wrote: Dear Lukasz Dalek, PXA25x gadget implements common function

Re: [U-Boot] [PATCH v3] h2200: Add support for iPAQ h2200 palmtop

2012-09-26 Thread Łukasz Dałek
On 27.09.2012 02:31, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 02:07, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 01:58, Marek Vasut wrote: Dear Łukasz Dałek, On 27.09.2012 01:32, Marek Vasut wrote: Dear Łukasz Dałek, On 26.09.2012 18:13, Marek Vasut wrote: Dear

Re: [U-Boot] [PATCH 2/3] h2200: Add board reset support

2013-01-12 Thread Łukasz Dałek
x27;t have __attribute__((weak)) so if I would try to implement it compiler will return with error. Yours sincerely, Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 1/5] pxa255: Add UDC registers definitions

2012-07-27 Thread Łukasz Dałek
This patch starts series of patches adding support for USB support on PXA255 chips. Signed-off-by: Łukasz Dałek --- arch/arm/include/asm/arch-pxa/pxa-regs.h | 247 ++ 1 files changed, 247 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch-pxa/pxa

[U-Boot] [PATCH 2/5] drivers/usb/gadget/Makefile: Add UDC ACM and Ether

2012-07-27 Thread Łukasz Dałek
Compile USB ttyACM and Ethernet drivers on pxa255. Signed-off-by: Łukasz Dałek --- drivers/usb/gadget/Makefile |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 87d1918..7307595 100644 --- a/drivers/usb

[U-Boot] [PATCH 3/5] pxa255: Add USB CDC ACM driver

2012-07-27 Thread Łukasz Dałek
Signed-off-by: Łukasz Dałek --- drivers/serial/usbtty.h |2 + drivers/usb/gadget/pxa25x_udc.c | 939 +++ include/usb/pxa25x_udc.h| 65 +++ 3 files changed, 1006 insertions(+), 0 deletions(-) create mode 100644 drivers/usb/gadget

[U-Boot] [PATCH 5/5] usbether: Fixed bug when using with PXA25X chips

2012-07-27 Thread Łukasz Dałek
n any other chips. Signed-off-by: Łukasz Dałek --- drivers/usb/gadget/ether.c | 21 - 1 files changed, 20 insertions(+), 1 deletions(-) diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c index d975fb6..964fe2e 100644 --- a/drivers/usb/gadget/ether.c +++ b/dr

[U-Boot] [PATCH 1/3] usbether: Fixed bug when using with PXA25X chips

2012-08-17 Thread Łukasz Dałek
n any other chips. Signed-off-by: Łukasz Dałek --- drivers/usb/gadget/ether.c | 21 - 1 files changed, 20 insertions(+), 1 deletions(-) diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c index d975fb6..964fe2e 100644 --- a/drivers/usb/gadget/ether.c +++ b/dr

[U-Boot] [PATCH 2/3] pxa25x: Add UDC registers definitions

2012-08-17 Thread Łukasz Dałek
Signed-off-by: Łukasz Dałek --- arch/arm/include/asm/arch-pxa/regs-usb.h | 174 ++ 1 files changed, 174 insertions(+), 0 deletions(-) create mode 100644 arch/arm/include/asm/arch-pxa/regs-usb.h diff --git a/arch/arm/include/asm/arch-pxa/regs-usb.h b/arch/arm

Re: [U-Boot] [PATCH v4 2/8] pxa: Add some stuff to examine cpu model and rev

2012-10-02 Thread Łukasz Dałek
? Nothing changed except patch 7/8 where I only added nicer comment Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 1/8] h2200: Add support for iPAQ h2200 palmtop

2012-10-02 Thread Łukasz Dałek
wrong of course. Can you recommend board which has proper Makefile? Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 1/8] h2200: Add support for iPAQ h2200 palmtop

2012-10-02 Thread Łukasz Dałek
where? No. I'll fix this. Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v5 3/3] h2200: Add USB CDC ethernet support

2012-10-02 Thread Łukasz Dałek
t for h2200. Łukasz Dałek ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v5 3/3] h2200: Add USB CDC ethernet support

2012-10-02 Thread Łukasz Dałek
On 03.10.2012 02:18, Marek Vasut wrote: Dear Łukasz Dałek, On 03.10.2012 02:06, Marek Vasut wrote: Dear Lukasz Dalek, Add support for ethernet over USB which can be used for e.g. booting process. It works with tftp and dhcp clients code. Signed-off-by: Lukasz Dalek --- Changes for v5

Re: [U-Boot] [PATCH v5 3/3] h2200: Add USB CDC ethernet support

2012-10-02 Thread Łukasz Dałek
On 03.10.2012 02:25, Marek Vasut wrote: Dear Łukasz Dałek, On 03.10.2012 02:18, Marek Vasut wrote: Dear Łukasz Dałek, On 03.10.2012 02:06, Marek Vasut wrote: Dear Lukasz Dalek, Add support for ethernet over USB which can be used for e.g. booting process. It works with tftp and dhcp

Re: [U-Boot] [PATCH v5 3/3] h2200: Add USB CDC ethernet support

2012-10-03 Thread Łukasz Dałek
On 03.10.2012 03:04, Marek Vasut wrote: Dear Łukasz Dałek, On 03.10.2012 02:25, Marek Vasut wrote: Dear Łukasz Dałek, On 03.10.2012 02:18, Marek Vasut wrote: Dear Łukasz Dałek, On 03.10.2012 02:06, Marek Vasut wrote: Dear Lukasz Dalek, Add support for ethernet over USB which can be

Re: [U-Boot] [PATCH v6] h2200: Add USB CDC ethernet support

2012-10-03 Thread Łukasz Dałek
define CONFIG_EXTRA_ENV_SETTINGS \ + "stdin=serial\0" \ + "stdout=serial\0" \ + "stderr=serial\0" +#endif + #endif /* __CONFIG_H */ Why do I have to remove CONFIG_H2200_USBETH? If I do so, I'm not be able to disable USB ethernet support. Ł

Re: [U-Boot] [PATCH v6] h2200: Add USB CDC ethernet support

2012-10-03 Thread Łukasz Dałek
On 03.10.2012 21:22, Marek Vasut wrote: Dear Łukasz Dałek, On 03.10.2012 20:34, Marek Vasut wrote: Dear Lukasz Dalek, Add support for ethernet over USB which can be used for e.g. booting process. It works with tftp and dhcp clients code. Signed-off-by: Lukasz Dalek --- Changes for v6

Re: [U-Boot] [PATCH v6] h2200: Add USB CDC ethernet support

2012-10-03 Thread Łukasz Dałek
On 03.10.2012 21:40, Marek Vasut wrote: Dear Łukasz Dałek, [...] Why do I have to remove CONFIG_H2200_USBETH? If I do so, I'm not be able to disable USB ethernet support. Why would you disable it? Because of other gadgets, e.g. ttyACM Can't these co-exist? Best regards, Marek

Re: [U-Boot] [PATCH v6] h2200: Add USB CDC ethernet support

2012-10-03 Thread Łukasz Dałek
On 03.10.2012 22:02, Marek Vasut wrote: Dear Łukasz Dałek, On 03.10.2012 21:40, Marek Vasut wrote: Dear Łukasz Dałek, [...] Why do I have to remove CONFIG_H2200_USBETH? If I do so, I'm not be able to disable USB ethernet support. Why would you disable it? Because of other gadgets

Re: [U-Boot] h2200 fails to build on current u-boot/next

2012-10-09 Thread Łukasz Dałek
ng Marek as PXA custodian and serial patcher... Łukasz, can you have a look at why h2200 above u-boot/next fails to build, and can you quickly provide a new patch version to fix it? Amicalement, Yes, I will prepare patch soon. Łukasz Dałek ___ U-Boot mail

Re: [U-Boot] [U-Boot-Custodians] [RFC] enforce CONFIG_DM=y

2019-08-14 Thread Łukasz Dałek
On 8/13/19 1:12 PM, Tom Rini wrote: On Tue, Aug 13, 2019 at 11:53:59AM +0200, Marek Vasut wrote: On 8/13/19 11:34 AM, Simon Glass wrote: On Fri, 9 Aug 2019 at 12:39, Heinrich Schuchardt wrote: The time lines set force in doc/driver-model/migration.rst for different subsystems to move to the