Re: [U-Boot] [PATCH] ventana: Add Gateworks Ventana family support

2014-01-29 Thread Stefano Babic
Hi Tim, On 29/01/2014 02:26, Tim Harvey wrote: I should not have used the word 'header'. I _am_ talking about the Image Vector Table (IVT) and Device Configuration Data (DCD) data structures that the IMX6 BOOT ROM needs to boot and which are present in u-boot.imx. Right. The kobs-ng

Re: [U-Boot] [PATCH] ventana: Add Gateworks Ventana family support

2014-01-29 Thread Stefan Roese
Hi Stefano, On 29.01.2014 09:19, Stefano Babic wrote: It appears the only other mainlined IMX6 bootloader to support NAND is the Titanium and there is no README for it at all. If there were, I would expect it to say pretty much the same thing that my proposed Ventana README states. There was

Re: [U-Boot] [PATCH] ventana: Add Gateworks Ventana family support

2014-01-28 Thread Stefano Babic
Hi Tim, On 28/01/2014 00:36, Tim Harvey wrote: I will include the ddr config files from boundary with a ../../boundary/... where they do not differ. The clocks.cfg does differ (see below) but I liked the way Boundary broke these files out do want to re-use as much as possible. ok, I see.

Re: [U-Boot] [PATCH] ventana: Add Gateworks Ventana family support

2014-01-28 Thread Tim Harvey
On Tue, Jan 28, 2014 at 2:20 AM, Stefano Babic sba...@denx.de wrote: Hi Tim, On 28/01/2014 00:36, Tim Harvey wrote: snip diff --git a/board/gateworks/gw_ventana/README b/board/gateworks/gw_ventana/README new file mode 100644 index 000..9de55ba --- /dev/null +++

Re: [U-Boot] [PATCH] ventana: Add Gateworks Ventana family support

2014-01-28 Thread Stefan Roese
Hi Tim, On 29.01.2014 02:26, Tim Harvey wrote: Regardless of what is loading the next level (u-boot.bin) the initial flashing of NAND is still currently handled only by kobs-ng so I'm not sure how this differs in this respect. I plan to look at adding the functionality of kobs-ng to u-boot at

Re: [U-Boot] [PATCH] ventana: Add Gateworks Ventana family support

2014-01-27 Thread Fabio Estevam
On Tue, Jan 21, 2014 at 4:41 PM, Tim Harvey thar...@gateworks.com wrote: +static int setup_pmic_voltages(void) +{ + int ret; + unsigned char value, rev_id = 0; + + ret = i2c_set_bus_num(1); + if (ret) + return ret; + if (!i2c_probe(0x8)) { +

Re: [U-Boot] [PATCH] ventana: Add Gateworks Ventana family support

2014-01-27 Thread Tim Harvey
On Mon, Jan 27, 2014 at 3:57 AM, Fabio Estevam feste...@gmail.com wrote: On Tue, Jan 21, 2014 at 4:41 PM, Tim Harvey thar...@gateworks.com wrote: +static int setup_pmic_voltages(void) +{ + int ret; + unsigned char value, rev_id = 0; + + ret = i2c_set_bus_num(1); +