All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] Support for ALTERA FPGAs
@ 2003-10-09 17:08 Steven Scholz
  2003-10-09 20:01 ` Wolfgang Denk
  0 siblings, 1 reply; 6+ messages in thread
From: Steven Scholz @ 2003-10-09 17:08 UTC (permalink / raw)
  To: u-boot

Hi there,

the patch attached adds support for ALTERA FPGAs. For now only the ACEX1K using 
the so called "passive serial" Interface.

The code and idea is heavily stolen from the xilinx stuff. And just like there 
the board specific code has to provide some functions for handling the FPGA 
signals CONF_DONE, DATA, DCLK, nCONFIG, nSTATUS.

I thought I release it quite early to avoid redundant work done by others and 
hope this could be a usefull starting point for people using Altera FPGAs.

* Patch by Steven Scholz, 10 Oct 2003
   - Add support for Altera FPGA ACEX1K

Cheers,

-- 
Steven Scholz

imc Measurement & Control               imc Me?systeme GmbH
Voltastr. 5                             Voltastr. 5
13355 Berlin                            13355 Berlin
Germany                                 Deutschland
fon: +49 30 467090-0                    Tel: 030 / 467090-0
fax: +49 30 4631576                     fax: 030 / 4631576

-------------- next part --------------
A non-text attachment was scrubbed...
Name: altera.patch.bz2
Type: application/octet-stream
Size: 5841 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20031009/69d3fc98/attachment.obj 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot-Users] Support for ALTERA FPGAs
  2003-10-09 17:08 [U-Boot-Users] Support for ALTERA FPGAs Steven Scholz
@ 2003-10-09 20:01 ` Wolfgang Denk
  2003-10-13  6:37   ` Steven Scholz
  2003-10-13 16:02   ` Steven Scholz
  0 siblings, 2 replies; 6+ messages in thread
From: Wolfgang Denk @ 2003-10-09 20:01 UTC (permalink / raw)
  To: u-boot

Dear Steven,

in message <3F85960E.60104@imc-berlin.de> you wrote:
> 
> the patch attached adds support for ALTERA FPGAs. For now only the ACEX1K using 
> the so called "passive serial" Interface.
> 
> The code and idea is heavily stolen from the xilinx stuff. And just like there 
> the board specific code has to provide some functions for handling the FPGA 
> signals CONF_DONE, DATA, DCLK, nCONFIG, nSTATUS.
> 
> I thought I release it quite early to avoid redundant work done by others and 
> hope this could be a usefull starting point for people using Altera FPGAs.
> 
> * Patch by Steven Scholz, 10 Oct 2003
>    - Add support for Altera FPGA ACEX1K

Mostly added. There is a small bug in the patch, which I tried to fix:

Index: common/Makefile
===================================================================
RCS file: /cvsroot/u-boot/u-boot/common/Makefile,v
retrieving revision 1.10
diff -p -u -r1.10 Makefile
--- common/Makefile	27 Jul 2003 00:21:15 -0000	1.10
+++ common/Makefile	9 Oct 2003 16:50:34 -0000
@@ -47,7 +47,8 @@ COBJS	= main.o altera.o bedbug.o \
 	  hush.o kgdb.o lists.o lynxkdi.o miiphybb.o miiphyutil.o \
 	  s_record.o soft_i2c.o soft_spi.o spartan2.o \
 	  usb.o usb_kbd.o usb_storage.o \
-	  virtex2.o xilinx.o
+	  virtex2.o xilinx.o \
+	  altera.o ACEX1K.o
 
You add "altera.o" which is already present in the list of objects ?
[Also you ignore ordering :-( ]



Added, thanks. Will show up on CVS soon.

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd at denx.de
The reasonable man adapts himself to the world; the unreasonable  one
persists  in  trying  to  adapt  the  world to himself. Therefore all
progress depends on the unreasonable man."      - George Bernard Shaw

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot-Users] Support for ALTERA FPGAs
  2003-10-09 20:01 ` Wolfgang Denk
@ 2003-10-13  6:37   ` Steven Scholz
  2003-10-13  7:44     ` Wolfgang Denk
  2003-10-13 16:02   ` Steven Scholz
  1 sibling, 1 reply; 6+ messages in thread
From: Steven Scholz @ 2003-10-13  6:37 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

>>the patch attached adds support for ALTERA FPGAs. For now only the ACEX1K using 
>>the so called "passive serial" Interface.
>>... 
> Mostly added. There is a small bug in the patch, which I tried to fix:
>  
> You add "altera.o" which is already present in the list of objects ?
> [Also you ignore ordering :-( ]

Oops.

I've overseen the altera.o.
And I did not know that order here is important!
Why is it?
Why was altera at.o the beginning of the list?
Is it in alphabetical order?

-- 
Steven Scholz

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot-Users] Support for ALTERA FPGAs
  2003-10-13  6:37   ` Steven Scholz
@ 2003-10-13  7:44     ` Wolfgang Denk
  0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2003-10-13  7:44 UTC (permalink / raw)
  To: u-boot

Dear Steven,

in message <3F8A483B.1040807@imc-berlin.de> you wrote:
> 
> > You add "altera.o" which is already present in the list of objects ?
> > [Also you ignore ordering :-( ]
> 
> Oops.
> 
> I've overseen the altera.o.
> And I did not know that order here is important!
> Why is it?

For esthetical reasons,  and  and  easo  of  work,  and  reliability.
Searching an item or verifying if it already exists is much easier if
such lists are kept sorted.

> Why was altera at.o the beginning of the list?
> Is it in alphabetical order?

Indeed.

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd at denx.de
How long does it take a  DEC  field  service  engineer  to  change  a
lightbulb?       It depends on how many bad ones he brought with him.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot-Users] Support for ALTERA FPGAs
  2003-10-09 20:01 ` Wolfgang Denk
  2003-10-13  6:37   ` Steven Scholz
@ 2003-10-13 16:02   ` Steven Scholz
  2003-10-13 16:36     ` Wolfgang Denk
  1 sibling, 1 reply; 6+ messages in thread
From: Steven Scholz @ 2003-10-13 16:02 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

> 
> Added, thanks. Will show up on CVS soon.

how long does it usually take for your changes to appear on sourceforge?

Because there still not there? :-(

-- 
Steven Scholz

imc Measurement & Control               imc Me?systeme GmbH
Voltastr. 5                             Voltastr. 5
13355 Berlin                            13355 Berlin
Germany                                 Deutschland
fon: +49 30 467090-0                    Tel: 030 / 467090-0
fax: +49 30 4631576                     fax: 030 / 4631576

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot-Users] Support for ALTERA FPGAs
  2003-10-13 16:02   ` Steven Scholz
@ 2003-10-13 16:36     ` Wolfgang Denk
  0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2003-10-13 16:36 UTC (permalink / raw)
  To: u-boot

Dear Steven,

in message <3F8ACC81.4040302@imc-berlin.de> you wrote:
> 
> how long does it usually take for your changes to appear on sourceforge?
> 
> Because there still not there? :-(

I'm sorry, ther eis little I can  do  but  hope  the  situation  will
improve soon as SF has been promising for some time. Please feel free
to check the CVS status page at SF at
http://sourceforge.net/docman/display_doc.php?docid=2352&group_id=1#cvs

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-10-13 16:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-09 17:08 [U-Boot-Users] Support for ALTERA FPGAs Steven Scholz
2003-10-09 20:01 ` Wolfgang Denk
2003-10-13  6:37   ` Steven Scholz
2003-10-13  7:44     ` Wolfgang Denk
2003-10-13 16:02   ` Steven Scholz
2003-10-13 16:36     ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.