David McCullough | 4 May 2004 07:04

Re: [patch] SUZAKU support for uClinux-dist


Jivin Yasushi SHOJI lays it down ...
> At Fri, 30 Apr 2004 21:04:21 +1000,
> David McCullough wrote:
> > 
> > 
> > Jivin Yasushi SHOJI lays it down ...
> > > Hi,
> > > 
> > > I'd like to ask uClinux-dist maintainer to add SUZAKU support for
> > > uClinux-dist.
> > > 
> > > here is the patch against the current CVS.
> > 
> > Applied to our internal tree,  however it will not show in CVS until the
> > next full release,
> 
> Thanks.  It's ok that it will not show up till next release.
> 
> btw, I'm sorry that I've sent the patch to the wrong mailing list....

Seems like it went to the right list to me :-) :-)

Cheers,
Davidm

--

-- 
David McCullough, davidm@...  Ph:+61 7 34352815 http://www.SnapGear.com
Custom Embedded Solutions + Security   Fx:+61 7 38913630 http://www.uCdot.org
___________________________
(Continue reading)

John Williams | 5 May 2004 01:53
Picon
Picon
Favicon

Re: environment setup

Hi Luo,

Luo Yang wrote:
> I am a beginner in uclinux application development and microblaze is new
> to me. I am trying to setup the software platform for the
> microblaze-uclinux application development. I've successfully installed
> tool-chain binary, and mb-gcc works for the a simple test program.
> However, when I come to compile the program I wrote before, the complier
> report error that  some header files can not be found". The program is
> ok when compile in normal linux environment.
> 
> 
> My question is do I need to install a uclibc library? Did I forget to
> install anything?

You really need to build your applications from within the uClinux-dist 
environment.  We haven't done the work yet to build a stand=alone uClibc 
microblaze gcc.

Just look in the uClinux-dist/user directory, find a simple example 
program, and copy the format of the Makefile etc, and it will be much 
easier for you!

Regards,

John
___________________________
microblaze-uclinux mailing list
microblaze-uclinux@...
Project Home Page : http://www.itee.uq.edu.au/~jwilliams/mblaze-uclinux
(Continue reading)

John Williams | 7 May 2004 00:35
Picon
Picon
Favicon

Re: Is gpio_test source available?

Hi Steven,

Merrifield, Steven (GE Infrastructure) wrote:

> Is the source to gpio_test available? I couldn't see it in the distribution or in CVS. 

I've never put it into the main uClinux-dist because it's microblaze 
specific (and not particularly interesting! )  But anyway, the source 
and Makefile are attached.

> On my V2MB1000 (rev 1) board, only the RHS LED is being used - it seems to show the 2nd LSB only. eg, gpio_test
A7 displays <blank><A>. Likewise, gpio_test ABCD displays <blank><C>. I know both LEDs work, because
I've tried other programs.
> Also, the DIP switches always read as 00000000, regardless of their position.

Yep - this is because of a change in how platgen handled bit vectors 
(busses) from EDK3.2 -> 6.1.  I expect it's still the same in 6.2.  To 
get the GPIO working as expected under 6.1, you have to make some tiny 
changes in the kernel source.  It's messy, but anyway...  The better fix 
would be to isolate the changes in the MHS file, using the bus_split 
macro and so on, but...

in linux-2.4.x/include/asm-microblaze/mbvanilla.h, edit the line (abt 
line 50 i think)

#define MICROBLAZE_GPIO_DIR 0x0000FF00

to

#define MICROBLAZE_GPIO_DIR 0x000000FF
(Continue reading)

John Williams | 7 May 2004 02:47
Picon
Picon
Favicon

[Fwd: [uClinux-cvs] Re: Updating CVS to 2.4.26]

Hi folks,

Re: the attached email from David McCullough - some CVS maintainence 
going on for the next cpl of days, for now if doing a checkout or update 
from the uClinux CVS, use the tag:

cvs update -r before_linux_2_4_26

or

cvs co -r before_linux_2_4_26

otherwise you might pull a broken tree.

Regards,

John
From: David McCullough <davidm@...>
Subject: [uClinux-cvs] Re: Updating CVS to 2.4.26
Date: 2004-05-07 00:38:35 GMT
Hi all,

I am moving the uClinux-2.4.x tree to 2.4.26 over the next day or so.
Hopefully it won't take too long :-)
(Continue reading)

John Williams | 7 May 2004 06:51
Picon
Picon
Favicon

mbvanilla_net under ISE/EDK6.2

Hi folks,

Has anyone tried building mbvanilla_net under ISE/EDK6.2?  I ran the 
revup utility first, which basically only touched the .mss file.

I'm building this purely under Linux BTW, haven't tried yet upgrading my 
winXP setup.  I have the latest and greatest service packs etc.

The results are very, very odd.  The HW platform and bootloader 
synthesise and upload fine, and I get the bootloader menu printing 
correctly, however when I try to enter a number (like 1 to boot from 
flash), the character received by the UARTlite is actually a '5'.  It's 
hard to explain - I type 1 on my keyboard (using minicom as I always 
have), but the character received and echoed by the bootloader is a '5'!

Any ideas?

John
___________________________
microblaze-uclinux mailing list
microblaze-uclinux@...
Project Home Page : http://www.itee.uq.edu.au/~jwilliams/mblaze-uclinux
Mailing List Archive : http://www.itee.uq.edu.au/~listarch/microblaze-uclinux/

Raj Nagarajan | 7 May 2004 07:45
Favicon

Re: mbvanilla_net under ISE/EDK6.2

Hi John,

I have the design working on EDK6.2 SP1. I haven't had any problems.. I 
am attaching my EDK design file (same as mbvanilla_net, but DCMs have 
been changed)..

I use Windows Hyperterminal for communication.

- Raj

John Williams wrote:
> Hi folks,
> 
> Has anyone tried building mbvanilla_net under ISE/EDK6.2?  I ran the 
> revup utility first, which basically only touched the .mss file.
> 
> I'm building this purely under Linux BTW, haven't tried yet upgrading my 
> winXP setup.  I have the latest and greatest service packs etc.
> 
> The results are very, very odd.  The HW platform and bootloader 
> synthesise and upload fine, and I get the bootloader menu printing 
> correctly, however when I try to enter a number (like 1 to boot from 
> flash), the character received by the UARTlite is actually a '5'.  It's 
> hard to explain - I type 1 on my keyboard (using minicom as I always 
> have), but the character received and echoed by the bootloader is a '5'!
> 
> Any ideas?
> 
> John
> ___________________________
(Continue reading)

John Williams | 7 May 2004 08:29
Picon
Picon
Favicon

Re: mbvanilla_net under ISE/EDK6.2

Hi Raj,

Raj Nagarajan wrote:

> I have the design working on EDK6.2 SP1. I haven't had any problems.. I 
> am attaching my EDK design file (same as mbvanilla_net, but DCMs have 
> been changed)..

Thanks for the reply - I think I found the cause and it's my fault (sort 
of).  I leave my insight board in SlaveSerial mode since I always 
download configurations from the PROM.  I had kept it in this mode but 
did a JTAG bitstream download - I think there must be some wierd 
interference between the JTAG download and the Prom... when I re-burned 
the prom with the new bitfile (generated in 6.2), it workes fine...

I'll be posting the a new version of mbvanilla_net to the website soon, 
for compatability with edk6.2 SP1.

Thanks again,

John
___________________________
microblaze-uclinux mailing list
microblaze-uclinux@...
Project Home Page : http://www.itee.uq.edu.au/~jwilliams/mblaze-uclinux
Mailing List Archive : http://www.itee.uq.edu.au/~listarch/microblaze-uclinux/

emanuel stiebler | 9 May 2004 19:37

boot flash 8-bit wide

Hi all,

anybody uses a 8-bit wide boot flash on microblaze ?
Running out of pins, and seems a waste to connect a 32-bit
flash, when it is useless after boot anyway ...

cheers & thanks

___________________________
microblaze-uclinux mailing list
microblaze-uclinux@...
Project Home Page : http://www.itee.uq.edu.au/~jwilliams/mblaze-uclinux
Mailing List Archive : http://www.itee.uq.edu.au/~listarch/microblaze-uclinux/

emanuel stiebler | 9 May 2004 19:50

different uclinux ports on microblaze

Hi all,

I'm trying to put up a list of different uclinux-mblaze ports.

Seems to me like a good idea, so the "newbies" can see, what
possibilities this FPGA core & uclinux has.

And for all others, working on ports, it would be probably
intersting to see, what other people are working on, and
probably even share ideas.

So, please send to me via PM (so we don't generate too much traffic
here) what you have ;-)

Specifically, platform used (Eval, Devel Kit bought from, your own 
hardware). If it is a "standard" hardware, just the order/model number 
is fine. If you did something in house, please a short description
of the platform, if possible.

I wouldn't even mind hearing of platforms which didn't work at all,
because of ...

Any special devices you had to attach, brief desription.
(like IDE, Ethernet, USB, CAN, ...)

Status ? Work in progress is fine, it would be even (IMHO)
interesting of what people "dream" to do.

I would collect all the data, and forward a summary to John,
probably he can find a small corner on the uclinux-mblaze page
(Continue reading)

John Williams | 9 May 2004 23:51
Picon
Picon
Favicon

Re: different uclinux ports on microblaze

Hi Emanuel,

emanuel stiebler wrote:

> I'm trying to put up a list of different uclinux-mblaze ports.
> 
> Seems to me like a good idea, so the "newbies" can see, what
> possibilities this FPGA core & uclinux has.

Great idea, I think this would be very valuable to the community.

If people are willing, it would also be great to bundle a .zip archive 
containing the EDK project that builds the platform (MHS, UCF etc etc). 
  I realise not everyone is in a position to do this, but for those who 
can it would be great.

> So, please send to me via PM (so we don't generate too much traffic
> here) what you have ;-)

Excess traffic is not something we have too much to worry about - this 
is not quite the LKML...yet :-)

> Specifically, platform used (Eval, Devel Kit bought from, your own 
> hardware). If it is a "standard" hardware, just the order/model number 
> is fine. If you did something in house, please a short description
> of the platform, if possible.

I can kick it off with mbvanilla_ddr and mbvanilla_net :-)

mbvanilla_ddr:
(Continue reading)


Gmane