Re: [U-Boot] [RESEND PATCH v2 1/5] Tegra2: Add macros to calculate bitfield shifts and masks

2011-07-11 Thread Wolfgang Denk
Dear Simon Glass, In message 1309884558-7700-2-git-send-email-...@chromium.org you wrote: Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Removed all bitfield access macros As Albert already pointed out, this is actually a misleading description. + * You use these to

Re: [U-Boot] [RESEND PATCH v2 1/5] Tegra2: Add macros to calculate bitfield shifts and masks

2011-07-11 Thread Wolfgang Denk
Dear Simon Glass, In message CAPnjgZ1Oymaa2_gQGxw88jJG2Kr_fN6tJ5HDgUiOHPjw7jX2=g...@mail.gmail.com you wrote: Not sure I follow you: the added lines below do indeed add bitfield access macros, don't they? No these are just for defining the shifts and masks. There is no access But you

Re: [U-Boot] [RESEND PATCH v2 2/5] Tegra2: Add microsecond timer functions

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 4e1937a6.7050...@gmail.com you wrote: On 06/07/11 02:49, Simon Glass wrote: These functions provide access to the high resolution microsecond timer and tidy up a global variable in the code. Excellent - Good to see microsecond timers making their way in

Re: [U-Boot] [RESEND PATCH v2 2/5] Tegra2: Add microsecond timer functions

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 4e1937a6.7050...@gmail.com you wrote: timer_get_us needs to be u64 (unsigned long long). Also, the new timer API will define this as time_now_us, would be great if you could use this naming convention now to save me doing a mass of replaces later Um... this

Re: [U-Boot] [RESEND PATCH v2 2/5] Tegra2: Add microsecond timer functions

2011-07-11 Thread Graeme Russ
Hi Wolfgang, On 11/07/11 16:20, Wolfgang Denk wrote: Dear Graeme Russ, In message 4e1937a6.7050...@gmail.com you wrote: timer_get_us needs to be u64 (unsigned long long). Also, the new timer API will define this as time_now_us, would be great if you could use this naming convention now to

[U-Boot] [Question] [MMC] About the file load and booting command with MMC

2011-07-11 Thread 馬克泡
HI all, I have a question here maybe there is an answer, however, I just didn't found it in documents and in wiki. I have found that if I want to load a file from storage like USB storage or IDE disks into memory, we can do it by commands fatload device ... or ext2load device ... . These

[U-Boot] armv7: fix: Disable D cache for goni target (s5p)

2011-07-11 Thread Lukasz Majewski
Signed-off-by: Lukasz Majewski l.majew...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com Cc: Aneesh V ane...@ti.com --- include/configs/s5p_goni.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/s5p_goni.h b/include/configs/s5p_goni.h index

[U-Boot] [PATCH v2] ftsdc010: add support of ftsdc010 mmc controller

2011-07-11 Thread Macpaul Lin
Faraday FTSDC010 controller is a SD/MMC controller for SoC chip. Signed-off-by: Macpaul Lin macp...@andestech.com --- Changes for v2: - headers: replace typo from SDC_DATA_CTRL_REG_BLK_SIZE(x) to SDC_DATA_CTRL_REG_BLK_BYTES(x) drivers/mmc/Makefile |1 +

[U-Boot] [PATCH 0/2] i2c:gpio:s5p I2C GPIO rework

2011-07-11 Thread Lukasz Majewski
Below patches are supposed to adapt S5P processor's GPIO subsystem to soft_i2c software GPIO framework. For this purpose some renaming has been performed. Patch tested at GONI reference target. Lukasz Majewski (2): gpio:samsung s5p_ suffix add for GPIO functions i2c:gpio:s5p: I2C GPIO

[U-Boot] [PATCH 1/2] gpio:s5p s5p_ suffix add for GPIO functions

2011-07-11 Thread Lukasz Majewski
This change is driven by need of general gpio_* functions, which as their parameter are accepting the GPIO pin number, NOT block and pin. This makes the code alike to omap, and allows for using I2C software generic framework. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Cc: Minkyu Kang

[U-Boot] [PATCH 2/2] i2c:gpio:s5p: I2C GPIO Software implementation (via soft_i2c)

2011-07-11 Thread Lukasz Majewski
Signed-off-by: Lukasz Majewski l.majew...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com --- arch/arm/include/asm/arch-s5pc1xx/gpio.h |2 + board/samsung/goni/goni.c| 55 +- include/configs/s5p_goni.h | 13 +++ 3 files

[U-Boot] [Question]AT91: MMC read and multiple read failed

2011-07-11 Thread Song, Elen
Hello Reinhard: I've tried your patch([PATCH] AT91: enable MMC on at91sam(9260/9g20/0xe)ek) on uboot-atmel branch on at91sam9260.The sdcard is correctly initialized,but when I test mmc read command, I found two issues. 1.while run command mmc read 2200 0 1 to read the first block,it will

Re: [U-Boot] [Question]AT91: MMC read and multiple read failed

2011-07-11 Thread Reinhard Meyer
Hello Song, Elen, Hello Reinhard: I've tried your patch([PATCH] AT91: enable MMC on at91sam(9260/9g20/0xe)ek) on uboot-atmel branch on at91sam9260.The sdcard is correctly initialized,but when I test mmc read command, I found two issues. 1.while run command mmc read 2200 0 1 to read

Re: [U-Boot] [PATCH 1/2] net/eth.c: make eth_get_dev_by_name(NULL) safe

2011-07-11 Thread Helmut Raiger
On 07/07/2011 07:46 PM, Mike Frysinger wrote: those NULL checks should not be necessary either. a correctly written networking driver should only register itself with the miiphy layer when it has successfully registered itself with the eth layer. thus any of the miiphy callbacks should

Re: [U-Boot] [PATCH 1/2] net/eth.c: make eth_get_dev_by_name(NULL) safe

2011-07-11 Thread Helmut Raiger
On 07/07/2011 06:46 PM, Albert ARIBAUD wrote: Hi Helmut, Le 04/07/2011 12:29, helmut.rai...@hale.at a écrit : From: Helmut Raigerhelmut.rai...@hale.at Seems like your git send-email config does not have your name along with your e-mail address, causing this From: to appear in the patch

Re: [U-Boot] [Question]AT91: MMC read and multiple read failed

2011-07-11 Thread Song, Elen
-Original Message- From: Reinhard Meyer [mailto:u-b...@emk-elektronik.de] Sent: 2011年7月11日 17:06 To: Song, Elen Cc: u-boot@lists.denx.de Subject: Re: [U-Boot] [Question]AT91: MMC read and multiple read failed Hello Song, Elen, Hello Reinhard: I've tried your patch([PATCH] AT91:

Re: [U-Boot] [Question]AT91: MMC read and multiple read failed

2011-07-11 Thread Reinhard Meyer
Dear Song, Elen, [snip] static int mci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) { ... cmdr = mci_encode_cmd(cmd, data,error_flags); /* Send the command */ +if ((cmd-cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) ||(cmd-cmdidx ==

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-11 Thread u-b...@emk-elektronik.de
Dear Jens Scharsig, Am 10.07.2011 14:37, schrieb Albert ARIBAUD: Hi Jens, Le 10/07/2011 11:14, Jens Scharsig a écrit : * add USB host support to eb_cpux9k2 board Signed-off-by: Jens Scharsigjs_at...@scharsoft.de --- include/configs/eb_cpux9k2.h | 14 ++ 1 files

[U-Boot] [PATCH] AT91: EMK/TOP9000 board actualization

2011-07-11 Thread Reinhard Meyer
Signed-off-by: Reinhard Meyer u-b...@emk-elektronik.de --- board/emk/top9000/top9000.c | 131 ++- 1 files changed, 116 insertions(+), 15 deletions(-) diff --git a/board/emk/top9000/top9000.c b/board/emk/top9000/top9000.c index 61dee62..92e8a9d 100644 ---

[U-Boot] Help Desk Error

2011-07-11 Thread College Of Engineering
Dear User, You have exceeded the limit of your mailbox set by your IT service provider, you will be unable to receive new emails and sent successfully. Just before this message was sent, you are Currently running on 91624 KB, You have has exceeded the storage limit which is 20GB. To prevent

[U-Boot] New to u-boot

2011-07-11 Thread Rakesh Modi
Hello Guys, I am new to u-boot. I want to understand the flow of u-boot. I have tried to go through start.s file, but I stop after arm_boot function call. I did not understand that how board gets configured? in older version of u-boot i can see board name_config option in makefile, but in newer

Re: [U-Boot] New to u-boot

2011-07-11 Thread Simon Schwarz
Hi Rakesh, I am new to u-boot. I want to understand the flow of u-boot. Here is a starting point for you: http://marc.info/?t=13038145412r=1w=2 I did not understand that how board gets configured? in older version of u-boot i can see board name_config option in makefile, but in newer

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-11 Thread Wolfgang Denk
Dear u-b...@emk-elektronik.de, In message 1310382637.7288.7.camel@ubuntu you wrote: The patch you sent as an attachment does indeed apply, but I remember its against the rules to use it; however patchworks does correctly Indeed patches shpuld be sent inline which makes reviewing and

Re: [U-Boot] [PATCH 0/2] usb:gadget: Linux USB Gadget framework

2011-07-11 Thread 馬克泡
Hi Lukasz, 2011/7/11 Lukasz Majewski l.majew...@samsung.com On Tue, 05 Jul 2011 22:16:22 +0800 馬克泡 macp...@gmail.com wrote: Please keep all the discussions are CC-ed to related persons (included the u-boot's mailing list address), unless you have private stuff to talk. Hence every people

Re: [U-Boot] cpu/arm926ejs/start.S question

2011-07-11 Thread Fabio Estevam
Hi Andre, On Mon, Jul 11, 2011 at 1:59 AM, Andre Renaud an...@bluewatersys.com wrote: ... I have basically got this working, but I have to put the final u-boot.imx image into the SPI flash at address 0x400, not the base (the image that I had essentially padded it out to 0x400). Is there any

[U-Boot] [PATCH] mtd: eLBC NAND: remove elbc_fcm_ctrl-oob_poi

2011-07-11 Thread Mike Hench
The eLBC NAND driver currently follows up each program/write operation with a read-back of the page, in order to [ostensibly] fill in ECC data for the caller. However, the page address used for this read is always -1, so the read will never work correctly. Remove this useless (and potentially

Re: [U-Boot] [PATCH 1/2] powerpc/85xx: Add ULPI and UTMI USB Phy support for P1010/P1014

2011-07-11 Thread Kumar Gala
On Jun 30, 2011, at 11:11 PM, Kumar Gala wrote: From: Ramneek Mehresh ramneek.mehr...@freescale.com Add UTMI and ULPI PHY support for USB controller on qoriq series of processors with internal UTMI PHY implemented, for example P1010/P1014 - Use both getenv() and hwconfig to get USB phy

Re: [U-Boot] [PATCH] powerpc/mpc8xxx: Allow override DDR read-to-write turnaround time

2011-07-11 Thread Kumar Gala
On Jun 30, 2011, at 11:14 AM, York Sun wrote: Add this option to allow boards to override the default read-to-write turnaround time for better performance. Signed-off-by: York Sun york...@freescale.com --- arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |3 +++

Re: [U-Boot] [PATCH 2/2] powerpc/85xx: Fix the work-arounds for errata SERDES-8 SERDES-A001 on p4080

2011-07-11 Thread Kumar Gala
On Jul 1, 2011, at 9:06 AM, Tabi Timur-B04825 wrote: Kumar Gala wrote: Ok, Can you send a commit message for when I merge them or repost a merged patch. powerpc/85xx: remove SERDES4 soft-reset work-around Some P4080 rev1 errata work-arounds, notably erratum SERDES4, required a bank

Re: [U-Boot] New to u-boot

2011-07-11 Thread Anton Staaf
Rakesh, you probably want to take a look at the mkconfig script. It is responsible for doing much of the board configuration in preparation for building, including the generation of the top level config.mk that specifies things like ARCH, CPU and BOARD. -Anton On Mon, Jul 11, 2011 at 8:54 AM,

Re: [U-Boot] [PATCH] powerpc/corenet_ds: add back buffer write for NOR flash

2011-07-11 Thread Kumar Gala
On Jun 30, 2011, at 1:00 PM, York Sun wrote: Enable buffer write for better performance. This platform uses a NOR flash chip which supports write buffer programming. CFI driver can query the buffer size and use it to program the flash for best performance. Signed-off-by: York Sun

Re: [U-Boot] [RESEND PATCH v2 1/5] Tegra2: Add macros to calculate bitfield shifts and masks

2011-07-11 Thread Anton Staaf
On Mon, Jul 11, 2011 at 1:16 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message CAPnjgZ1Oymaa2_gQGxw88jJG2Kr_fN6tJ5HDgUiOHPjw7jX2= g...@mail.gmail.com you wrote: Not sure I follow you: the added lines below do indeed add bitfield access macros, don't they? No

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-11 Thread Jens Scharsig
Am 2011-07-11 13:10, schrieb u-b...@emk-elektronik.de: Dear Jens Scharsig, snip The patch is correct but anything between me an you/list modifies the mails. There are additional spaces in my file. Until I found why the mta's adds. I have attache the patch as file. Let me guess... using

[U-Boot] How to build symbols into EFF file?

2011-07-11 Thread ed . collins
Hello All, I am using Uboot with a Lauterbach emulator. I am trying to figure out how to get the symbols into the ELF output file so I can use symbolic debugginhg. Can someone tell me how to get the symbols into the output file? thanks, Ed ___ U-Boot

Re: [U-Boot] How to build symbols into EFF file?

2011-07-11 Thread Wolfgang Denk
Dear ed.coll...@computer.org, In message CAF+LJYg1Ug4uJncnTW-NwR_2c+pS2V=wk4lna9x-jfcmvqo...@mail.gmail.com you wrote: I am using Uboot with a Lauterbach emulator. I am trying to figure out how to get the symbols into the ELF output file so I can use symbolic debugginhg. Can someone tell me

[U-Boot] status of patches in usb next branch

2011-07-11 Thread John Rigby
Remy, Are the patches in your next branch candidates for moving to master and doing a pull request or is there still work to be done? Thanks, John ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] powerpc/mpc8xxx: fix DDR data width checking

2011-07-11 Thread Kumar Gala
On Jun 27, 2011, at 3:35 PM, York Sun wrote: Checking width before setting DDR controller. SPD for DDR1 and DDR2 has data width and primary sdram width. The latter one has different meaning for DDR3. Signed-off-by: York Sun york...@freescale.com --- arch/powerpc/cpu/mpc8xxx/ddr/options.c

Re: [U-Boot] [PATCH] powerpc/mpc85xx: Display a warning for unsupported DDR data rates

2011-07-11 Thread Kumar Gala
On Jun 27, 2011, at 3:30 PM, York Sun wrote: If DDR initialziation uses a speed table and the speed is not matched, print a warning message instead of silently ignoring. Signed-off-by: York Sun york...@freescale.com --- board/freescale/corenet_ds/ddr.c |6 ++

Re: [U-Boot] [PATCH] powerpc/corenet_ds: Fix RCW overriding for RDIMM

2011-07-11 Thread Kumar Gala
On Jun 27, 2011, at 3:39 PM, York Sun wrote: Allow overriding RCW for all RDIMM, not only quad-rank ones. Signed-off-by: York Sun york...@freescale.com --- board/freescale/corenet_ds/ddr.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) applied to 85xx - k

Re: [U-Boot] [Patch v2 1/2] powerpc/mpc8xxx: Enable calculation for fixed DDR chips

2011-07-11 Thread Kumar Gala
On Jun 6, 2011, at 8:42 PM, York Sun wrote: We used to have fixed parameters for soldered DDR chips. This patch introduces CONFIG_SYS_DDR_RAW_TIMING to enable calculation based on timing data from DDR chip datasheet, implemneted in board-specific files or header files. Signed-off-by: York

Re: [U-Boot] [Patch v2 2/2] powerpc/mpc8xxx: Adding fallback to raw timing on supported boards

2011-07-11 Thread Kumar Gala
On Jun 6, 2011, at 8:42 PM, York Sun wrote: In case of empty SPD or checksum error, fallback to raw timing on supported boards. Signed-off-by: York Sun york...@freescale.com --- arch/powerpc/cpu/mpc8xxx/ddr/main.c |8 1 files changed, 8 insertions(+), 0 deletions(-) applied

[U-Boot] [GIT pull] Please pull u-boot-mpc85xx

2011-07-11 Thread Kumar Gala
The following changes since commit 810cb19003ffe0115d10700fc512a2a743916f20: MPC83XX: Fix PCI express clock setup (2011-07-06 19:09:28 -0500) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx master Felix Radensky (1): powerpc/85xx: Fix pin muxing for second USB

[U-Boot] [PATCH v2] SMDKV310: Fix host compilation of mkv310_image

2011-07-11 Thread Dirk Behme
From: Dirk Behme dirk.be...@googlemail.com Fix compilation of mkv310_image host tool tools/mkv310_image.c: In function 'main': tools/mkv310_image.c:67: error: 'S_IRUSR' undeclared (first use in this function) tools/mkv310_image.c:67: error: (Each undeclared identifier is reported only once

[U-Boot] Nand Erase/Write Fails with mtd error -5

2011-07-11 Thread Bouhara Kamel
Hello, Im getting a trouble with mtd on my imx27 27 board, I can't write or erase it on U-Boot-1.3.4, here is the log : U-Boot run update_all FEC ETHERNET: Autonegotiation timeout FEC

Re: [U-Boot] [RESEND PATCH v2 2/5] Tegra2: Add microsecond timer functions

2011-07-11 Thread Wolfgang Denk
Dear Graeme, In message 4e1a9b9b.4030...@gmail.com you wrote: Am I missing something? Yes - A 16 part patch series: - In patchwork, filter by Graeme Russ as submitter - http://lists.denx.de/pipermail/u-boot/2011-June/094958.html is the summary post I'm aware of this - it's on my

Re: [U-Boot] [PATCH] mtd: eLBC NAND: remove elbc_fcm_ctrl-oob_poi

2011-07-11 Thread Scott Wood
On Mon, 11 Jul 2011 11:19:12 -0400 Mike Hench mhe...@elutions.com wrote: The eLBC NAND driver currently follows up each program/write operation with a read-back of the page, in order to [ostensibly] fill in ECC data for the caller. However, the page address used for this read is always -1, so

[U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-11 Thread Jens Scharsig
Signed-off-by: Jens Scharsig js_at...@scharsoft.de --- include/configs/eb_cpux9k2.h | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index c4b1e65..b1fcec7 100644 --- a/include/configs/eb_cpux9k2.h

Re: [U-Boot] [GIT pull] Please pull u-boot-mpc85xx

2011-07-11 Thread Wolfgang Denk
Dear Kumar Gala, In message alpine.lfd.2.00.1107111324480.27...@right.am.freescale.net you wrote: The following changes since commit 810cb19003ffe0115d10700fc512a2a743916f20: MPC83XX: Fix PCI express clock setup (2011-07-06 19:09:28 -0500) are available in the git repository at:

[U-Boot] Good dissassambler

2011-07-11 Thread Raleigh Boulware
Hey do you know of a good dissassmbler for looking at these ROM binary files? I have tried Ida on the web and others and they have not been able accurately dissassamble the BIN files. ___ U-Boot mailing list

Re: [U-Boot] [PATCH v1 (WIP) 00/16] [Timer]API Rewrite

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 1309261269-4363-1-git-send-email-graeme.r...@gmail.com you wrote: The following series is a work-in-progress revamp of the timer API. The aim is to create a new userland API consisting of the following functions (along with a few arch level support functions): I

Re: [U-Boot] [PATCH v1 (WIP) 01/16] [Timer]Fix misuse of ARM *timer_masked() functions outside arch/arm

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 1309261269-4363-2-git-send-email-graeme.r...@gmail.com you wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com I consider this a bug fix, independent from the other dicussion. This should be applied in any case. Acked-by: Wolfgang Denk w...@denx.de Best

Re: [U-Boot] [PATCH v1 (WIP) 02/16] [Timer]Remove calls to set_timer outside arch/

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 1309261269-4363-3-git-send-email-graeme.r...@gmail.com you wrote: There is no need to use set_timer(). Replace with appropriate use of get_timer() Signed-off-by: Graeme Russ graeme.r...@gmail.com Acked-by: Wolfgang Denk w...@denx.de Best regards, Wolfgang Denk

Re: [U-Boot] [PATCH v1 (WIP) 03/16] [Timer]Remove calls to set_timer in arch/

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 1309261269-4363-4-git-send-email-graeme.r...@gmail.com you wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com The description is not quite correct, as you not only remove the calls to that function, but also it's implementation itself. Otherwise: Acked-by:

Re: [U-Boot] [PATCH v1 (WIP) 04/16] [Timer]Allow reset_timer() only for Nios2

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 1309261269-4363-5-git-send-email-graeme.r...@gmail.com you wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com --- drivers/block/mg_disk.c |2 ++ drivers/mtd/cfi_flash.c |4 2 files changed, 6 insertions(+), 0 deletions(-) diff --git

Re: [U-Boot] [PATCH v1 (WIP) 05/16] [Timer]Remove reset_timer() for non-Nios2 arches

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 1309261269-4363-6-git-send-email-graeme.r...@gmail.com you wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com Seems this patch conflicts with 03/16, which apparently already removed the same code, at least in some places? Best regards, Wolfgang Denk --

Re: [U-Boot] [PATCH v1 (WIP) 07/16] [Timer]Remove reset_timer_masked()

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 1309261269-4363-8-git-send-email-graeme.r...@gmail.com you wrote: Fold implementation into timer_init() where needed This needs a better description, then, if you don;t really remove it. I'm otherwise fine with that, too. Best regards, Wolfgang Denk -- DENX

Re: [U-Boot] [PATCH v1 (WIP) 08/16] [Timer]Create new userland timer API

2011-07-11 Thread Wolfgang Denk
Dear Graeme Russ, In message 1309261269-4363-9-git-send-email-graeme.r...@gmail.com you wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com Please define userland in U-Boot context ? +u32 time_now_ms(void); +u32 time_since_ms(u32 from, u32 to); +u32 time_max_since_ms(u32 from, u32

Re: [U-Boot] Good dissassambler

2011-07-11 Thread Wolfgang Denk
Dear Raleigh Boulware, In message col109-w1889a5502835e3d9db37adf7...@phx.gbl you wrote: Hey do you know of a good dissassmbler for looking at these ROM binary fil es? I have tried Ida on the web and others and they have not been able accu rately dissassamble the BIN files. objdump ? Best

Re: [U-Boot] [PATCH v1 (WIP) 08/16] [Timer]Create new userland timer API

2011-07-11 Thread Graeme Russ
Hi Wolfgang, On 12/07/11 08:05, Wolfgang Denk wrote: Dear Graeme Russ, In message 1309261269-4363-9-git-send-email-graeme.r...@gmail.com you wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com Please define userland in U-Boot context ? Used outside of /arch (i.e. in board or driver

[U-Boot] Re

2011-07-11 Thread ©Western Union Money Transfer
You have $85,000USD in cash credit by the International Monetary Funds(IMF) via western union. Details required: Full Name,Address,Tel,Occupation Message sent using Telaen Webmail 1.2.0

Re: [U-Boot] [PATCH v1 (WIP) 00/16] [Timer]API Rewrite

2011-07-11 Thread Graeme Russ
Hi Wolfgang, On 12/07/11 07:56, Wolfgang Denk wrote: Dear Graeme Russ, In message 1309261269-4363-1-git-send-email-graeme.r...@gmail.com you wrote: The following series is a work-in-progress revamp of the timer API. The aim is to create a new userland API consisting of the following

Re: [U-Boot] [RESEND PATCH v2 2/5] Tegra2: Add microsecond timer functions

2011-07-11 Thread Graeme Russ
On 12/07/11 05:58, Wolfgang Denk wrote: Dear Graeme, In message 4e1a9b9b.4030...@gmail.com you wrote: Am I missing something? Yes - A 16 part patch series: - In patchwork, filter by Graeme Russ as submitter - http://lists.denx.de/pipermail/u-boot/2011-June/094958.html is the summary

[U-Boot] [PATCH v2] mtd: eLBC NAND: remove elbc_fcm_ctrl-oob_poi

2011-07-11 Thread Mike Hench
From: mhench mhe...@elutions.com The eLBC NAND driver currently follows up each program/write operation with a read-back of the page, in order to [ostensibly] fill in ECC data for the caller. However, the page address used for this read is always -1, so the read will never work correctly. Remove

Re: [U-Boot] Good dissassambler

2011-07-11 Thread Raleigh Boulware
Dear Raleigh Boulware, In message col109-w1889a5502835e3d9db37adf7...@phx.gbl you wrote: Hey do you know of a good dissassmbler for looking at these ROM binary fil es? I have tried Ida on the web and others and they have not been able accu rately dissassamble the BIN files.

Re: [U-Boot] Good dissassambler

2011-07-11 Thread Mike Frysinger
On Monday, July 11, 2011 19:29:18 Raleigh Boulware wrote: Raleigh Boulware wrote: Hey do you know of a good dissassmbler for looking at these ROM binary fil es? I have tried Ida on the web and others and they have not been able accu rately dissassamble the BIN files. objdump ?

Re: [U-Boot] [PATCH v1 (WIP) 00/16] [Timer]API Rewrite

2011-07-11 Thread Graeme Russ
On 12/07/11 07:56, Wolfgang Denk wrote: Dear Graeme Russ, [snip] One thing I always wanted to do in the previous discussion was to check what other projects (like Linux, barebox, etc.) are doing in this area. I think it is worth reading the Linux Documentation/timers/highres.txt document,

[U-Boot] [PATCH 1/5] EfikaMX: Use correct imximage.cfg

2011-07-11 Thread Marek Vasut
From: Jana Rapava ferma...@gmail.com Signed-off-by: Jana Rapava ferma...@gmail.com --- boards.cfg |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/boards.cfg b/boards.cfg index e682f76..52f37f0 100644 --- a/boards.cfg +++ b/boards.cfg @@ -139,7 +139,7 @@ omap5912osk

[U-Boot] [PATCH 3/5] EfikaMX: Enable EXT2 booting

2011-07-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com --- include/configs/efikamx.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/efikamx.h b/include/configs/efikamx.h index 209d3e2..7d3363a 100644 --- a/include/configs/efikamx.h +++

[U-Boot] [PATCH 4/5] USB: Move USB_PRINTF() out of ifdef in usb_scan_devices()

2011-07-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com --- common/usb.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/usb.c b/common/usb.c index 4f7c520..8e84266 100644 --- a/common/usb.c +++ b/common/usb.c @@ -957,8 +957,8 @@ void usb_scan_devices(void) /*

[U-Boot] [PATCH 2/5] EfikaMX: Add missing CONFIG_SYS_TEXT_BASE

2011-07-11 Thread Marek Vasut
From: Jana Rapava ferma...@gmail.com Signed-off-by: Jana Rapava ferma...@gmail.com --- include/configs/efikamx.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/efikamx.h b/include/configs/efikamx.h index a04ac49..209d3e2 100644 ---

[U-Boot] [PATCH 5/5] USB: Set portnr so USB1.1 and 1.0 devices work on EHCI controllers

2011-07-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com --- common/usb.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/usb.c b/common/usb.c index 8e84266..a401c09 100644 --- a/common/usb.c +++ b/common/usb.c @@ -1166,6 +1166,7 @@ void usb_hub_port_connect_change(struct

Re: [U-Boot] LED tube light/T8

2011-07-11 Thread Sophia Liu
Hello, Dear Manager This is Sophia, LED light manufacturer from China. No offsense, but excuse me: Did you import LED tube light to replace your home light for saving more electricity? ---to personal Are you insterested in selling LED tube lights for increasing your product catalogue?

Re: [U-Boot] [PATCH v1 (WIP) 00/16] [Timer]API Rewrite

2011-07-11 Thread Graeme Russ
On 12/07/11 09:36, Graeme Russ wrote: On 12/07/11 07:56, Wolfgang Denk wrote: Dear Graeme Russ, [snip] Having this still in mind, I took a look across the fence to what barebox is doing. Guess what? From common/clock.c: * clock.c - generic clocksource implementation *

Re: [U-Boot] [Question]AT91: MMC read and multiple read failed

2011-07-11 Thread Song, Elen
-Original Message- From: Reinhard Meyer [mailto:u-b...@emk-elektronik.de] Sent: 2011年7月11日 18:27 To: Song, Elen Cc: u-boot@lists.denx.de Subject: Re: [U-Boot] [Question]AT91: MMC read and multiple read failed Dear Reinhard, [snip] static int mci_send_cmd(struct mmc *mmc, struct