Re: [U-Boot-Users] [PATCH V8] ARM: Add support for Lyrtech SFF-SDRboard (ARM926EJS)

2008-06-26 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:53 Wed 25 Jun , Hugo Villeneuve wrote:
 Hugo Villeneuve wrote:
  [EMAIL PROTECTED] wrote:
  ARM: This patch adds support for the Lyrtech SFF-SDR
  board, based on the TI DaVinci architecture (ARM926EJS).
  
  I haven´t heard from anyone about my patch being accepted or not.
  It´s been almost five weeks since I submitted the first version, and
  I still cannot see it in the ARM tree or U-Boot master tree.  
  
  Should I look into a specific tree to see if my patch has been
  accepted?
 
 Still no answer, who is responsible for incorporating my patch in U-Boot?
 
 Is anything missing or incorrect with the patch?
The patch is OK for me.
I'll apply it soon

Best Regards,
J.

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


Re: [U-Boot-Users] [PATCH V8] ARM: Add support for Lyrtech SFF-SDRboard (ARM926EJS)

2008-06-25 Thread Hugo Villeneuve
Hugo Villeneuve wrote:
 [EMAIL PROTECTED] wrote:
 ARM: This patch adds support for the Lyrtech SFF-SDR
 board, based on the TI DaVinci architecture (ARM926EJS).
 
 I haven´t heard from anyone about my patch being accepted or not.
 It´s been almost five weeks since I submitted the first version, and
 I still cannot see it in the ARM tree or U-Boot master tree.  
 
 Should I look into a specific tree to see if my patch has been
 accepted?

Still no answer, who is responsible for incorporating my patch in U-Boot?

Is anything missing or incorrect with the patch?

Thank-you, Hugo V.


 Signed-off-by: Hugo Villeneuve [EMAIL PROTECTED]
 Signed-off-by: Philip Balister, OpenSDR [EMAIL PROTECTED]
 
 ---
 
  CREDITS   |5 +
  MAKEALL   |1 +
  Makefile  |3 +
  board/davinci/sffsdr/Makefile |   51 ++
  board/davinci/sffsdr/board_init.S |   32 
  board/davinci/sffsdr/config.mk|   42 +
  board/davinci/sffsdr/sffsdr.c |  306
  +
  board/davinci/sffsdr/u-boot.lds   |   52 +++
  include/asm-arm/mach-types.h  |   13 ++
  include/configs/davinci_sffsdr.h  |  148 ++ 10 files
 changed, 653 insertions(+), 0 deletions(-)
 
 diff --git a/CREDITS b/CREDITS
 index e84ef38..b855904 100644
 --- a/CREDITS
 +++ b/CREDITS
 @@ -533,3 +533,8 @@ N: Timo Tuunainen
  E: [EMAIL PROTECTED]
  D: Support for Artila M-501 starter kit
  W: http://www.sysart.fi/
 +
 +N: Philip Balister
 +E: [EMAIL PROTECTED]
 +D: Port to Lyrtech SFFSDR development board.
 +W: www.opensdr.com
 diff --git a/MAKEALL b/MAKEALL
 index 37b4334..f53ceec 100755
 --- a/MAKEALL
 +++ b/MAKEALL
 @@ -496,6 +496,7 @@ LIST_ARM9=  \
  voiceblue   \
  davinci_dvevm   \
  davinci_schmoogie   \
 +davinci_sffsdr  \
  davinci_sonata  \
  
 
 diff --git a/Makefile b/Makefile
 index 6548f8e..05d90aa 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -2408,6 +2408,9 @@ davinci_dvevm_config : unconfig
  davinci_schmoogie_config :  unconfig
  @$(MKCONFIG) $(@:_config=) arm arm926ejs schmoogie davinci davinci
 
 +davinci_sffsdr_config : unconfig
 +@$(MKCONFIG) $(@:_config=) arm arm926ejs sffsdr davinci davinci +
  davinci_sonata_config : unconfig
  @$(MKCONFIG) $(@:_config=) arm arm926ejs sonata davinci davinci
 
 diff --git a/board/davinci/sffsdr/Makefile
 b/board/davinci/sffsdr/Makefile
 new file mode 100644
 index 000..4413b33
 --- /dev/null
 +++ b/board/davinci/sffsdr/Makefile
 @@ -0,0 +1,51 @@
 +#
 +# (C) Copyright 2000, 2001, 2002
 +# Wolfgang Denk, DENX Software Engineering, [EMAIL PROTECTED] +#
 +# Copyright (C) 2007 Sergey Kubushyn [EMAIL PROTECTED] +#
 +# See file CREDITS for list of people who contributed to this +#
 project. +#
 +# This program is free software; you can redistribute it and/or
 +# modify it under the terms of the GNU General Public License as
 +# published by the Free Software Foundation; either version 2 of
 +# the License, or (at your option) any later version. +#
 +# This program is distributed in the hope that it will be useful,
 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 +# GNU General Public License for more details.
 +#
 +# You should have received a copy of the GNU General Public License
 +# along with this program; if not, write to the Free Software
 +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA
 02111-1307 USA +
 +include $(TOPDIR)/config.mk
 +
 +LIB = $(obj)lib$(BOARD).a
 +
 +COBJS   := $(BOARD).o
 +SOBJS   := board_init.o
 +
 +SRCS:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
 +OBJS:= $(addprefix $(obj),$(COBJS))
 +SOBJS   := $(addprefix $(obj),$(SOBJS))
 +
 +$(LIB): $(obj).depend $(OBJS) $(SOBJS)
 +$(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
 +
 +clean:
 +rm -f $(SOBJS) $(OBJS)
 +
 +distclean:  clean
 +rm -f $(LIB) core *.bak *~ .depend
 +
 +#
 +# This is for $(obj).depend target
 +include $(SRCTREE)/rules.mk
 +
 +sinclude $(obj).depend
 +
 +#
 diff --git a/board/davinci/sffsdr/board_init.S
 b/board/davinci/sffsdr/board_init.S new file mode 100644
 index 000..84ecd96
 --- /dev/null
 +++ b/board/davinci/sffsdr/board_init.S
 @@ -0,0 +1,32 @@
 +/*
 + * Board-specific low level initialization code. Called at the very
 end + * of cpu/arm926ejs/davinci/lowlevel_init.S. Just returns if
 there is no + * initialization required.
 + *
 + * Copyright (C) 2007 Sergey Kubushyn [EMAIL PROTECTED] + *
 + * See file CREDITS for list of people who contributed to this + *
 project. + *
 + * This program is free software; you can redistribute it and/or
 + * modify it under the terms of the GNU General Public License as
 + * published by 

Re: [U-Boot-Users] [PATCH V8] ARM: Add support for Lyrtech SFF-SDRboard (ARM926EJS)

2008-06-18 Thread Hugo Villeneuve
[EMAIL PROTECTED] wrote:
 ARM: This patch adds support for the Lyrtech SFF-SDR
 board, based on the TI DaVinci architecture (ARM926EJS).

I haven´t heard from anyone about my patch being accepted or not. It´s been 
almost five weeks since I submitted the first version, and I still cannot see 
it in the ARM tree or U-Boot master tree.

Should I look into a specific tree to see if my patch has been accepted?

Thank-you, Hugo V.


 Signed-off-by: Hugo Villeneuve [EMAIL PROTECTED]
 Signed-off-by: Philip Balister, OpenSDR [EMAIL PROTECTED]
 
 ---
 
  CREDITS   |5 +
  MAKEALL   |1 +
  Makefile  |3 +
  board/davinci/sffsdr/Makefile |   51 ++
  board/davinci/sffsdr/board_init.S |   32 
  board/davinci/sffsdr/config.mk|   42 +
  board/davinci/sffsdr/sffsdr.c |  306
  +
  board/davinci/sffsdr/u-boot.lds   |   52 +++
  include/asm-arm/mach-types.h  |   13 ++
  include/configs/davinci_sffsdr.h  |  148 ++ 10 files
 changed, 653 insertions(+), 0 deletions(-) 
 
 diff --git a/CREDITS b/CREDITS
 index e84ef38..b855904 100644
 --- a/CREDITS
 +++ b/CREDITS
 @@ -533,3 +533,8 @@ N: Timo Tuunainen
  E: [EMAIL PROTECTED]
  D: Support for Artila M-501 starter kit
  W: http://www.sysart.fi/
 +
 +N: Philip Balister
 +E: [EMAIL PROTECTED]
 +D: Port to Lyrtech SFFSDR development board.
 +W: www.opensdr.com
 diff --git a/MAKEALL b/MAKEALL
 index 37b4334..f53ceec 100755
 --- a/MAKEALL
 +++ b/MAKEALL
 @@ -496,6 +496,7 @@ LIST_ARM9=   \
   voiceblue   \
   davinci_dvevm   \
   davinci_schmoogie   \
 + davinci_sffsdr  \
   davinci_sonata  \
  
 
 diff --git a/Makefile b/Makefile
 index 6548f8e..05d90aa 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -2408,6 +2408,9 @@ davinci_dvevm_config :  unconfig
  davinci_schmoogie_config :   unconfig
   @$(MKCONFIG) $(@:_config=) arm arm926ejs schmoogie davinci davinci
 
 +davinci_sffsdr_config :  unconfig
 + @$(MKCONFIG) $(@:_config=) arm arm926ejs sffsdr davinci davinci
 +
  davinci_sonata_config :  unconfig
   @$(MKCONFIG) $(@:_config=) arm arm926ejs sonata davinci davinci
 
 diff --git a/board/davinci/sffsdr/Makefile
 b/board/davinci/sffsdr/Makefile 
 new file mode 100644
 index 000..4413b33
 --- /dev/null
 +++ b/board/davinci/sffsdr/Makefile
 @@ -0,0 +1,51 @@
 +#
 +# (C) Copyright 2000, 2001, 2002
 +# Wolfgang Denk, DENX Software Engineering, [EMAIL PROTECTED]
 +#
 +# Copyright (C) 2007 Sergey Kubushyn [EMAIL PROTECTED]
 +#
 +# See file CREDITS for list of people who contributed to this
 +# project.
 +#
 +# This program is free software; you can redistribute it and/or
 +# modify it under the terms of the GNU General Public License as
 +# published by the Free Software Foundation; either version 2 of
 +# the License, or (at your option) any later version.
 +#
 +# This program is distributed in the hope that it will be useful,
 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 +# GNU General Public License for more details.
 +#
 +# You should have received a copy of the GNU General Public License
 +# along with this program; if not, write to the Free Software
 +# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 +# MA 02111-1307 USA
 +
 +include $(TOPDIR)/config.mk
 +
 +LIB  = $(obj)lib$(BOARD).a
 +
 +COBJS:= $(BOARD).o
 +SOBJS:= board_init.o
 +
 +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
 +OBJS := $(addprefix $(obj),$(COBJS))
 +SOBJS:= $(addprefix $(obj),$(SOBJS))
 +
 +$(LIB):  $(obj).depend $(OBJS) $(SOBJS)
 + $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
 +
 +clean:
 + rm -f $(SOBJS) $(OBJS)
 +
 +distclean:   clean
 + rm -f $(LIB) core *.bak *~ .depend
 +
 +#
 +# This is for $(obj).depend target
 +include $(SRCTREE)/rules.mk
 +
 +sinclude $(obj).depend
 +
 +#
 diff --git a/board/davinci/sffsdr/board_init.S
 b/board/davinci/sffsdr/board_init.S new file mode 100644
 index 000..84ecd96
 --- /dev/null
 +++ b/board/davinci/sffsdr/board_init.S
 @@ -0,0 +1,32 @@
 +/*
 + * Board-specific low level initialization code. Called at the very
 end + * of cpu/arm926ejs/davinci/lowlevel_init.S. Just returns if
 there is no + * initialization required.
 + *
 + * Copyright (C) 2007 Sergey Kubushyn [EMAIL PROTECTED]
 + *
 + * See file CREDITS for list of people who contributed to this
 + * project.
 + *
 + * This program is free software; you can redistribute it and/or
 + * modify it under the terms of the GNU General Public License as
 + * published by the Free Software Foundation; either version 2 of
 + * the License, or (at your option) any later version.
 + *
 + * This program is