Re: [U-Boot] Porting u-boot to flash micro with proprietary (non-GPL) flash programming library

2019-01-18 Thread Ulf Samuelsson
Den 2019-01-14 kl. 17:55, skrev Ulf Samuelsson: No Answer, so I am resending. Question is: How to port U-Boot to a flash microprocessor, where the vendor does not supply source code to the library to program the internal flash without violating GPL? Best Regards Ulf Samuelsson I am working in

[U-Boot] Porting u-boot to flash micro with proprietary (non-GPL) flash programming library

2019-01-14 Thread Ulf Samuelsson
I am working in a project where we are considering using U-Boot as a bootloader for a flash microcontroller with an ARM Cortex-Rx core. The chip is currently not supported by U-Boot. The processor will not be running linux. Our board will use • On Chip Flash • External Parallel Flas

Re: [U-Boot] Porting u-boot to a new soc, unsure of standards to follow.

2017-01-19 Thread Marty Plummer
No comments? On Sat, Jan 7, 2017 at 12:04 AM, Marty Plummer wrote: > Greetings, > > So, out of a desire to learn (or simply pure masochism), I've taken it > upon myself to work on mainlining support for a new arm SoC and board, > which the vendor SDK only provides source for release 2010.06 (whic

[U-Boot] Porting u-boot to a new soc, unsure of standards to follow.

2017-01-08 Thread Marty Plummer
Greetings, So, out of a desire to learn (or simply pure masochism), I've taken it upon myself to work on mainlining support for a new arm SoC and board, which the vendor SDK only provides source for release 2010.06 (which I had to find via taobao since the vendor in question is not being nice in r

[U-Boot] porting u-boot to zynq 7030

2016-04-05 Thread lipeng...@tsinghua.edu.cn
hi,all I'm porting u-boot to my board. But i do not know how to start. My board uses zynq 7030,but there is no it's config file. Is there some ug I can read,which can help me start? lipeng...@tsinghua.edu.cn ___ U-Boot mailing list U-Boot@lists

Re: [U-Boot] porting u-boot, few final questions

2014-11-11 Thread DaveKucharczyk
So the issues of the variables changing were due to me initializing everything in board_early_init_f(). I moved everything out of it except uart setup. If I setup the uart in board_init() instead of board_early_init_f() then the early cpu info stuff is missed. I guess there’s an opportunity for imp

Re: [U-Boot] porting u-boot, few final questions

2014-11-10 Thread DaveKucharczyk
So I am having another issue probably more related to computer science fundamentals. I have a global variable boot_dev defined in my board file like so... I define boot_device in arch/arm/include/asm/arch-mx5/sys_proto.h like this… Now, boot_dev returns the correct value in checkboard(), but r

Re: [U-Boot] porting u-boot, few final questions

2014-11-10 Thread DaveKucharczyk
Update: my board_late_init() function wasn’t working because I defined BOARD_LATE_INIT instead of CONFIG_BOARD_LATE_INIT. Doh! Since arch/arm/lib/board.c file is being removed, and when CONFIG_SYS_GENERIC_BOARD is defined, we are now using… common/board_f.c (for pre-relocation init) common/board_r

Re: [U-Boot] porting u-boot, few final questions

2014-11-10 Thread Nikolay Dimitrov
Hi gents, On 11/10/2014 06:04 PM, Fabio Estevam wrote: On Mon, Nov 10, 2014 at 1:47 PM, Wolfgang Denk wrote: Dear Fabio Estevam, In message you wrote: 1. How come setenv is not working in the board file? I tried setenv in different locations of board_early_init_f(), board_init(), board_l

Re: [U-Boot] porting u-boot, few final questions

2014-11-10 Thread Fabio Estevam
On Mon, Nov 10, 2014 at 1:47 PM, Wolfgang Denk wrote: > Dear Fabio Estevam, > > In message > you > wrote: >> >> > 1. How come setenv is not working in the board file? I tried setenv in >> > different locations of board_early_init_f(), board_init(), >> > board_late_init() >> > and checkboard(),

Re: [U-Boot] porting u-boot, few final questions

2014-11-10 Thread Wolfgang Denk
Dear Fabio Estevam, In message you wrote: > > > 1. How come setenv is not working in the board file? I tried setenv in > > different locations of board_early_init_f(), board_init(), board_late_init() > > and checkboard(), but it's not working. Did something change? > > Haven't tried it, but if

Re: [U-Boot] porting u-boot, few final questions

2014-11-10 Thread Fabio Estevam
On Mon, Nov 10, 2014 at 1:14 PM, DaveKucharczyk wrote: > Hi again. I just have a few things left to complete the port and hoping > someone can help me out. > > 1. How come setenv is not working in the board file? I tried setenv in > different locations of board_early_init_f(), board_init(), board_

Re: [U-Boot] porting u-boot, few final questions

2014-11-10 Thread DaveKucharczyk
Hi again. I just have a few things left to complete the port and hoping someone can help me out. 1. How come setenv is not working in the board file? I tried setenv in different locations of board_early_init_f(), board_init(), board_late_init() and checkboard(), but it's not working. Did something

Re: [U-Boot] porting u-boot, MMU question

2014-11-06 Thread DaveKucharczyk
Thank you for the responses guys, much appreciated. We will look into using the latest release. Another question... Can we still use setenv() in the board file? Before, we setup environment variables in board_late_intit() with setenv, but it doesn't seem to work in new u-boot I also tried it in

Re: [U-Boot] porting u-boot, MMU question

2014-11-05 Thread Otavio Salvador
Hello Dave, On Wed, Nov 5, 2014 at 7:04 PM, Stefano Babic wrote: > On 05/11/2014 18:16, DaveKucharczyk wrote: >> Stefano Babic wrote >>> You do not need to care about that. Cache is activated per default with >>> mx5/mx6, if you do not explicitely deactivate it in your config file. >>> You do not

Re: [U-Boot] porting u-boot, MMU question

2014-11-05 Thread Stefano Babic
Hi Dave, On 05/11/2014 18:16, DaveKucharczyk wrote: > Stefano Babic wrote >> You do not need to care about that. Cache is activated per default with >> mx5/mx6, if you do not explicitely deactivate it in your config file. >> You do not need to bother about MMU setup in your board files. > > Ok t

Re: [U-Boot] porting u-boot, MMU question

2014-11-05 Thread DaveKucharczyk
Stefano, thank you for the very fast response. :) Stefano Babic wrote > Instead of doing this, I think it will be easier if you start from the > current mx53loco nad make the customization for your board. Freescale's > U-Boot (2009.08) and mainline diverged, as well as some internal API. Initiall

Re: [U-Boot] porting u-boot, MMU question

2014-11-05 Thread Stefano Babic
Hi David, On 05/11/2014 17:36, DaveKucharczyk wrote: > I'm trying to upgrade u-boot-2009.08 to u-boot-2014.07. > > Our board is loosely based on the Freescale mx53loco board. I used the old > board file and config header files and moved them over to new u-boot > directory. Then using the new api

[U-Boot] porting u-boot, MMU question

2014-11-05 Thread DaveKucharczyk
I'm trying to upgrade u-boot-2009.08 to u-boot-2014.07. Our board is loosely based on the Freescale mx53loco board. I used the old board file and config header files and moved them over to new u-boot directory. Then using the new api to make changes. I'm now trying to figure out how to port and

[U-Boot] Porting U-Boot Issue - Linking fails

2014-03-19 Thread soderstrom
Hi, I'm attempting to port u-boot for NS7520 (arm7tdmi). My idea was to first revive the port of NS9750 (removed in commit4cfc611b4a4ce009cfad46804bec2a1caad8e329) and then rename and configure it for NS7520 which is quite similar. But I've kind of hit a wall, that I don't understand. ===

Re: [U-Boot] Porting U-boot

2014-01-30 Thread Michal Suchanek
On 30 January 2014 06:58, JYOTI DUBEY wrote: > After compiling the u-boot code what steps must be followed to boot the > current system (system with Grub) with u-boot?I mean how can I port my > system with the u-boot which I compiled? What system do you have? It depends on your system, obviously

[U-Boot] Porting U-boot

2014-01-29 Thread JYOTI DUBEY
After compiling the u-boot code what steps must be followed to boot the current system (system with Grub) with u-boot?I mean how can I port my system with the u-boot which I compiled? ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailm

Re: [U-Boot] Porting U-boot-2013-04 to sdk for mips board

2013-06-16 Thread krishna dwivedi
Hi Alll, Can anyone please reply on this. Regards, krishna On Fri, Jun 14, 2013 at 10:14 AM, krishna dwivedi < krishna.dwived...@gmail.com> wrote: > > Hi All, > > In mips,i dont see the .reloc section in u-boot.lds.But in other > architechtures(like ppc),I see in u-boot.lds: > > .reloc : >

Re: [U-Boot] Porting U-boot-2013-04 to sdk for mips board

2013-06-13 Thread krishna dwivedi
Hi All, In mips,i dont see the .reloc section in u-boot.lds.But in other architechtures(like ppc),I see in u-boot.lds: .reloc : { PROVIDE(_GOT2_TABLE_ = .); KEEP(*(.got2)) KEEP(*(.got)) PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4); _FIXUP_TABLE_ = .;

Re: [U-Boot] Porting U-boot-2013-04 to sdk for mips board

2013-06-13 Thread Daniel Schwierzeck
2013/6/13 krishna dwivedi : > Hi, > > I am trying to port the u-boot2013:04 to sdk.During compilation,I am > running into error:*Undefined reference to _GLOBAL_OFFSET_TABLE*.I checked > in u-boot.lds file thr is no definition of _GLOBAL_OFFSET_TABLE.I have > added this piece of code in u-boot.lds:

[U-Boot] Porting U-boot-2013-04 to sdk for mips board

2013-06-13 Thread krishna dwivedi
Hi, I am trying to port the u-boot2013:04 to sdk.During compilation,I am running into error:*Undefined reference to _GLOBAL_OFFSET_TABLE*.I checked in u-boot.lds file thr is no definition of _GLOBAL_OFFSET_TABLE.I have added this piece of code in u-boot.lds: .reloc : { KEEP(*(.go

Re: [U-Boot] Porting u-boot for MPC8280 based Board by taking MPC8260ads reference, Its hanging at some point

2012-08-09 Thread Markus Hubig
On Thu, Aug 09, 2012 at 11:44:18AM +0530, Thirumalesha N wrote: > I'm porting u-boot for mpc8280 based CPU board by taking mpc8260ads > reference, its hanging at some some point. i enabled debug mode. > U-Boot 1.3.1 (Aug 8 2012 - 09:19:16) > New Stack Pointer is: 1ffa0f48 > > please can you sugg

Re: [U-Boot] Porting u-boot for MPC8280 based Board by taking MPC8260ads reference, Its hanging at some point

2012-08-09 Thread Wolfgang Denk
Dear Thirumalesha N, In message you wrote: > > I'm porting u-boot for mpc8280 based CPU board by taking mpc8260ads > reference, its hanging at some some point. i enabled debug mode. > > U-Boot 1.3.1 (Aug 8 2012 - 09:19:16) I explained this before. Please stop asking questions about 5

[U-Boot] Porting u-boot for MPC8280 based Board by taking MPC8260ads reference, Its hanging at some point

2012-08-08 Thread Thirumalesha N
Dear sir, I'm porting u-boot for mpc8280 based CPU board by taking mpc8260ads reference, its hanging at some some point. i enabled debug mode. U-Boot 1.3.1 (Aug 8 2012 - 09:19:16) MPC8260 Reset Status: Check Stop, External Soft, External Hard MPC8260 Clock Configuration - Bus-to-Core

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-05-03 Thread Thirumalesha N
On Thu, May 3, 2012 at 2:29 PM, Wolfgang Denk wrote: > Dear Thirumalesha N, > > In message < > cao1rv-ysrczbuhdflfd0kj9y1a7+ffcnwutrgng2xtl34ca...@mail.gmail.com> you > wrote: > > > >To enable console on SMC( There are 2 SMC in MPC8280, we using SMC2 > > means Pin no. PA9 ( Tx ) and PA8 (Rx)

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-05-03 Thread Wolfgang Denk
Dear Thirumalesha N, In message you wrote: > >To enable console on SMC( There are 2 SMC in MPC8280, we using SMC2 > means Pin no. PA9 ( Tx ) and PA8 (Rx) ). >I modified as follows ... > + /* PA9 */ { 1, 1, 0, 1, 0, 0 }, /* SMC Tx */ > + /* PA8 */ { 1, 1, 0,

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-05-02 Thread Thirumalesha N
On Wed, May 2, 2012 at 7:15 PM, Wolfgang Denk wrote: > Dear Thirumalesha N, > > Please keep the mailing list on Cc: > > In message < > cao1rv-ayvvrd1urk3eq3asyqz2rrddpyyaexstktjh7tbuq...@mail.gmail.com> you > wrote: > > > > Unable to get a BDI tool. Am trying to do directly. > > Please feel

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-05-02 Thread Wolfgang Denk
Dear Thirumalesha N, Please keep the mailing list on Cc: In message you wrote: > > Unable to get a BDI tool. Am trying to do directly. Please feel free to contact off...@denx.de for a quotation. > Please can you explain me where the u-boot starts execution ? means > not address. In

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-04-26 Thread Wolfgang Denk
Dear Thirumalesha N, In message you wrote: > > > > I have BDI 2000 tool, but its not connecting to board. > > > > This is a problem that should be fixable. Keep in mind that the > > MPC82xx can come up in different modes, depending on if there is a > > valid HRCW in flash or not. This can c

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-04-26 Thread Thirumalesha N
> > Yes These frequency and flash base address are correct to my board. > > SMC2 pins PA9-TX and PA8-Rx, > > I Checked BRG and clock routing is matching to board. > > Then you need a debugger. > > > I have BDI 2000 tool, but its not connecting to board. > > This is a problem that should be fi

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-04-25 Thread Wolfgang Denk
Dear Thirumalesha N, In message you wrote: > > Yes These frequency and flash base address are correct to my board. > SMC2 pins PA9-TX and PA8-Rx, > I Checked BRG and clock routing is matching to board. Then you need a debugger. > I have BDI 2000 tool, but its not connecting to board. Th

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-04-24 Thread Thirumalesha N
> >> I modified MPC8260ADS with CPU clock frequency 100MHz, Text base > > >Is this the actual clock frequency on your system? Really? > > >> 0xfff0, Flash Base 0xfff0 and sdram base 0x, and > console on > > >Are these values correct for your hardware? > > >> SMC of port pins PA9(R

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-04-24 Thread Wolfgang Denk
Dear Thirumalesha N, In message you wrote: > > I modified MPC8260ADS with CPU clock frequency 100MHz, Text base Is this the actual clock frequency on your system? Really? > 0xfff0, Flash Base 0xfff0 and sdram base 0x, and console on Are these values correct for your hardware

[U-Boot] Porting u-boot for MPC8280 based board.

2012-04-24 Thread Thirumalesha N
Hi, I am trying to port u-boot for MPC8280 by taking reference MPC8260ADS, but its not booting, u-boot Version u-boot-1.3.1 ARCH = PPC 82xx Processor = MPC8280 Bootflash = AM29LV040B (512kb) mirror bit sdram = 512MB I modified MPC8260ADS with CPU clock frequency 100MHz,

[U-Boot] Porting U-boot

2011-10-31 Thread hanumant
I am trying to port u-boot to multiple soc/boards from an arm vendor. I would appreciate any input on the following approach 1)The controller instance on various SOC are the same with minor differences in the fifo size, gpios, clocks. 2)In order to help the porting effort, my idea is to add soc

Re: [U-Boot] Porting U-Boot to HP TouchPad

2011-08-23 Thread Stefan Schmidt
Hello. On Tue, 2011-08-23 at 09:27, Graeme Russ wrote: > > On Tue, Aug 23, 2011 at 9:23 AM, Jerry Van Baren wrote: > > On 08/22/2011 01:11 AM, Graeme Russ wrote: > >> > >> Hello All, > >> > >> Well it looks like I'm getting my hands on the now defunct HP > >> Touchpad > > > > Lucky! > > > >> Any

Re: [U-Boot] Porting U-Boot to HP TouchPad

2011-08-22 Thread Marek Vasut
On Tuesday, August 23, 2011 01:27:41 AM Graeme Russ wrote: > Hi Jerry, > > On Tue, Aug 23, 2011 at 9:23 AM, Jerry Van Baren wrote: > > On 08/22/2011 01:11 AM, Graeme Russ wrote: > >> Hello All, > >> > >> Well it looks like I'm getting my hands on the now defunct HP > >> Touchpad > > > > Lucky!

Re: [U-Boot] Porting U-Boot to HP TouchPad

2011-08-22 Thread Graeme Russ
Hi Jerry, On Tue, Aug 23, 2011 at 9:23 AM, Jerry Van Baren wrote: > On 08/22/2011 01:11 AM, Graeme Russ wrote: >> >> Hello All, >> >> Well it looks like I'm getting my hands on the now defunct HP >> Touchpad > > Lucky! > >> Any ideas how I could port U-Boot (and ultimately Linux) to it? > > There

Re: [U-Boot] Porting U-Boot to HP TouchPad

2011-08-22 Thread Jerry Van Baren
On 08/22/2011 01:11 AM, Graeme Russ wrote: > Hello All, > > Well it looks like I'm getting my hands on the now defunct HP > Touchpad Lucky! > Any ideas how I could port U-Boot (and ultimately Linux) to it? There is a fair amount of talk about installing various flavors of linux (including Andro

[U-Boot] Porting U-Boot to HP TouchPad

2011-08-21 Thread Graeme Russ
Hello All, Well it looks like I'm getting my hands on the now defunct HP Touchpad Any ideas how I could port U-Boot (and ultimately Linux) to it? Regards, Graeme ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Porting U-Boot on MIPS Au1x00 Family

2010-04-19 Thread  Gurumurthy G M
Hi All, i have a RMI Alchemy Au1350 Board which has 1MB NOR Flash, 512MB SDRAM and 4GB moniNAND. i am customizing the present u-boot board source code available in u-boot. I need information regarding the porting U-boot on MIPS as i need to change lot of things here. i am using BDI300

Re: [U-Boot] Porting u-boot to new PPC440EP board

2009-07-03 Thread Stefan Roese
On Friday 03 July 2009 05:26:22 yangguang3501 wrote: > I use a new board designing based on PPC440EP evaluating board, called > yosemite. I use u-boot version 1.3.1. 1.3.1 is quite old. I strongly suggest that you update to a recent version. > I reduce the SDRAM and Flash size to 128M and 16M, I

[U-Boot] Porting u-boot to new PPC440EP board

2009-07-02 Thread yangguang3501
Hi, I use a new board designing based on PPC440EP evaluating board, called yosemite. I use u-boot version 1.3.1. I reduce the SDRAM and Flash size to 128M and 16M, I do the porting works as decribed in th maillist"new board SDRAM conf",which you posted in last year. http://lists.denx.de/pipermail/

[U-Boot] porting u-boot and linux for ARM9 on WinXP

2009-04-08 Thread ranjan.dash1
Hi Guys, I have few querries. 1> I want to port u-boot and linux for ARM9 architecture on Wndows XP. is it possible? 2> If yes, please let me know how. 3> and also let me know which ARM toolchain I would use, and from where I wud download the kernel source tree? 4> How to unzip on windows XP (tar

[U-Boot] Porting u-boot to a custom fpga/ppc

2009-03-04 Thread NEAL, RYAN
Hello, I am sorry if this is a question that has been answered before. It is just that the entire project is overwhelming right now. So I will ask for some guidance. I need to write/port a bootloader to start a Xilinx virtex5 PPC. It is going to be running on a custom FPGA. I am not