1. 21 3月, 2009 40 次提交
    • M
      ppc4xx: Cleanup linker scripts of esd 4xx boards · a59205d1
      Matthias Fuchs 提交于
      Signed-off-by: NMatthias Fuchs <matthias.fuchs@esd.eu>
      Signed-off-by: NStefan Roese <sr@denx.de>
      a59205d1
    • M
      ppc4xx: Update TEXT_BASE for DASA_SIM boards · 2f103ee2
      Matthias Fuchs 提交于
      Fix building DASA_SIM boards by increasing U-Boot's size in flash.
      Signed-off-by: NMatthias Fuchs <matthias.fuchs@esd.eu>
      Signed-off-by: NStefan Roese <sr@denx.de>
      2f103ee2
    • M
      ppc4xx: DU405 maintenance fix · 09db8f4d
      Matthias Fuchs 提交于
      -strip unused features
      -fix resetting phy
      Signed-off-by: NMatthias Fuchs <matthias.fuchs@esd.eu>
      Signed-off-by: NStefan Roese <sr@denx.de>
      09db8f4d
    • M
    • G
      Add basic relocation to i386 port · e17ee157
      Graeme Russ 提交于
      Signed-off-by: NGraeme Russ <graeme.russ@gmail.com>
      e17ee157
    • G
      Implement SC520 timers · 8c63d476
      Graeme Russ 提交于
      Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
      8c63d476
    • G
      Factor out SC520 sub-features · 6d7f610b
      Graeme Russ 提交于
      Moved sub-features of the SC520 code which is currently selectively compiled
      using #ifdef out of sc520.c into individual files selectively compiled via
      the makefile
      
      Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
      6d7f610b
    • G
      Rewrite i386 interrupt handling · abf0cd3d
      Graeme Russ 提交于
      Rewrite interrupt handling functionality for the i386 port. Separated
      functionality into separate CPU and Architecture components.
      
      It appears as if the i386 interrupt handler functionality was intended
      to allow multiple handlers to be installed for a given interrupt.
      Unfortunately, this functionality was not fully implemented and also
      had the problem that irq_free_handler() does not allow the passing
      of the handler function pointer and therefore could never be used to
      free specific handlers that had been installed for a given IRQ.
      
      There were also various issues with array bounds not being fully
      tested.
      
      I had two objectives in mind for the new implementation:
      
      1) Keep the implementation as similar as possible to existing
         implementations. To that end, I have used the leon2/3
         implementations as the reference
      
      2) Seperate CPU and Architecture specific elements. All specific i386
         interrupt functionality is now in cpu/i386/ with the high level
         API and architecture specific code in lib_i386. Functionality
         specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
         been further split out into an individual file to allow for the
         implementation of the PIC architecture of the SC520 CPU (supports
         more IRQs)
      
      Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
      abf0cd3d
    • G
      Move ali512x.h · ece444b4
      Graeme Russ 提交于
      Moved ali512x.h from include/asm-i386/ic/ to /include
      
      Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
      ece444b4
    • G
      Rename SC520 Configuration Options · 6d83e3ac
      Graeme Russ 提交于
      Options are now all uniformly CONFIG_SYS_SC520_<option>
      
      Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
      6d83e3ac
    • T
      Fix all linker script to handle all rodata sections · f62fb999
      Trent Piepho 提交于
      A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
      which needs to be added the the linker script.  Instead of just adding this
      one section, we use a wildcard ".rodata*" to get all rodata linker section
      gcc has now and might add in the future.
      
      However, '*(.rodata*)' by itself will result in sub-optimal section
      ordering.  The sections will be sorted by object file, which causes extra
      padding between the unaligned rodata.str.1.1 of one object file and the
      aligned rodata of the next object file.  This is easy to fix by using the
      SORT_BY_ALIGNMENT command.
      
      This patch has not be tested one most of the boards modified.  Some boards
      have a linker script that looks something like this:
      
      *(.text)
      . = ALIGN(16);
      *(.rodata)
      *(.rodata.str1.4)
      *(.eh_frame)
      
      I change this to:
      
      *(.text)
      . = ALIGN(16);
      *(.eh_frame)
      *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
      
      This means the start of rodata will no longer be 16 bytes aligned.
      However, the boundary between text and rodata/eh_frame is still aligned to
      16 bytes, which is what I think the real purpose of the ALIGN call is.
      Signed-off-by: NTrent Piepho <xyzzy@speakeasy.org>
      f62fb999
    • M
      remove bi_enet*addr from global data for all arches · 566b652c
      Mike Frysinger 提交于
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      CC: Daniel Hellstrom <daniel@gaisler.com>
      CC: Michal Simek <monstr@seznam.cz>
      CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
      CC: Scott McNutt <smcnutt@psyent.com>
      CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
      566b652c
    • M
      ppc: mark global bi_enet*addr as legacy · eb85aa59
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      In the ppc case, these things are part of the legacy ABI, so keep them
      around but mark them as legacy so no new code will touch them.
      
      Also stop calling load_sernum_ethaddr() since all boards now implement
      this as a stub.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      eb85aa59
    • M
      boards: get mac address from env and move load_sernum_ethaddr() to board init · 9c150102
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      Rather than have common ppc code call a board-specific function like
      load_sernum_ethaddr(), have each board call it in its own board-specific
      misc_init_r() function.
      
      The boards that get converted here are:
      	- kup4k/kup4x
      	- pcs440ep
      	- tqm8xx
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      CC: Stefan Roese <sr@denx.de>
      9c150102
    • M
      cmc_pu2: get mac address from environment · 92b50ffe
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
      handle this board specially in common ARM code.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      92b50ffe
    • M
      boards: move board_get_enetaddr() into board-specific init · d8d21e69
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      Rather than have the common ppc code have board-specific hooks, move the
      board_get_enetaddr() function into the board-specific init functions.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      d8d21e69
    • M
      arm: get mac address from environment · f11e6ff5
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      Some warts are remaining and should be killed off (by moving the func to
      the appropriate board init code):
      	- davinci_eth_set_mac_addr
      	- cs8900_get_enetaddr
      	- smc_set_mac_addr
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      f11e6ff5
    • M
      nx823: get mac address from environment · 0107cf66
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      For the nx823, the serial number is moved out of load_sernum_ethaddr() and
      into misc_init_r() as is the env setup.  This lets us kill off the former
      function in the process.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      0107cf66
    • M
      lib_*/board.c: do not initialize bi_enet*addr in global data · 19b5b533
      Mike Frysinger 提交于
      Since everyone is using the environment for mac address storage, there is
      no point in seeding the global data.
      
      The arches that are converted here:
      	i386
      	m68k
      	microblaze
      	mips
      	nios
      	nios2
      	sh
      	sparc
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      CC: Daniel Hellstrom <daniel@gaisler.com>
      CC: Michal Simek <monstr@seznam.cz>
      CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
      CC: Scott McNutt <smcnutt@psyent.com>
      CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
      19b5b533
    • M
      npe: get mac address from environment · 740e8ba7
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      The resulting code can also be simplified even further.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Stefan Roese <sr@denx.de>
      CC: Ben Warren <biggerbadderben@gmail.com>
      740e8ba7
    • M
      cpu/: get mac address from environment · 6bacfa6a
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      The cpus that get converted here:
      	at91rm9200
      	mpc512x
      	mpc5xxx
      	mpc8260
      	mpc8xx
      	ppc4xx
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      CC: John Rigby <jrigby@freescale.com>
      CC: Stefan Roese <sr@denx.de>
      6bacfa6a
    • M
      lan91c96/smc91111/smc911x: get mac address from environment · 03f3d8d3
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      Also, do not bother checking the EEPROM if the env is setup.  This
      simplifies the code greatly.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      Signed-off-by: NWolfgang Dnek <wd@denx.de>
      CC: Ben Warren <biggerbadderben@gmail.com>
      CC: Rolf Offermanns <rof@sysgo.de>
      CC: Erik Stahlman <erik@vt.edu>
      CC: Daris A Nevil <dnevil@snmc.com>
      CC: Sascha Hauer <s.hauer@pengutronix.de>
      03f3d8d3
    • M
      sh_eth: get mac address from environment · c527ce92
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      The sh_eth driver can also be simplified a bit by using enetaddr member of
      the eth_device structure.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
      CC: Carlos Munoz <carlos@kenati.com>
      CC: Ben Warren <biggerbadderben@gmail.com>
      c527ce92
    • M
      cs8900: get mac address from environment · 0a5238ce
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      The cs8900 driver also changes slightly in that the hardware is not
      consulted if the mac address in the env is sane.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Marius Groeger <mgroeger@sysgo.de>
      CC: Ben Warren <biggerbadderben@gmail.com>
      0a5238ce
    • M
      bcm570x: get mac address from environment · c4b8762f
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      Since the address is in the PLM_DEVICE_BLOCK structure already, there is
      no need to pass the NodeAddress as a second parameter.  So drop the second
      argument to the LM_SetMacAddress() function (and update the tigon3 driver
      accordingly).
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      c4b8762f
    • M
      drivers/net/: get mac address from environment · d3f87148
      Mike Frysinger 提交于
      The environment is the canonical storage location of the mac address, so
      we're killing off the global data location and moving everything to
      querying the env directly.
      
      The drivers that get converted here:
      	3c589
      	4xx_enet
      	dc2114x
      	dm9000x
      	enc28j60
      	fsl_mcdmafec
      	ks8695eth
      	mcffec
      	rtl8019
      	rtl8169
      	s3c4510b_eth
      	xilinx_emac
      	xilinx_emaclite
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      CC: Rolf Offermanns <rof@sysgo.de>
      CC: Stefan Roese <sr@denx.de>
      CC: Sascha Hauer <saschahauer@web.de>
      CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
      CC: Greg Ungerer <greg.ungerer@opengear.com>
      CC: Xue Ligong <lgxue@hotmail.com>
      CC: Masami Komiya <mkomiya@sonare.it>
      CC: Curt Brune <curt@cucy.com>
      CC: Michal SIMEK <monstr@monstr.eu>
      d3f87148
    • M
      boards: get mac address from environment · b6b4625d
      Mike Frysinger 提交于
      The boards that get converted here to use the environment for the mac
      address rather than global data:
      	debris
      	mgcoge
      	mgsuvd
      	muas3001
      	netstal
      	pn62
      	sixnet
      	vcma9
      	xilinx (the ones that use xilinx_enet)
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      CC: Sangmoon Kim <dogoil@etinsys.com>
      CC: Heiko Schocher <hs@denx.de>
      CC: David Mueller <d.mueller@elsoft.ch>
      CC: Niklaus Giger <niklaus.giger@netstal.com>
      CC: Wolfgang Grandegger <wg@denx.de>
      CC: Dave Ellis <DGE@sixnetio.com>
      CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
      b6b4625d
    • M
      AmigaOneG3SE/enet: get mac address from environment · 06a0c438
      Mike Frysinger 提交于
      Always use the MAC address that is stored in the environment first before
      falling back to the ROM.  This also cuts out any comparison steps: if the
      mac in the env is sane, the ROM is never consulted.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
      CC: Ben Warren <biggerbadderben@gmail.com>
      06a0c438
    • M
      nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr() · 56b555a6
      Mike Frysinger 提交于
      Since the ethernet layer handles updating of device addresses itself from
      the environment, there is no point in calling eth_set_enetaddr().
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      56b555a6
    • M
      lynxkdi: get mac address from environment · 50135334
      Mike Frysinger 提交于
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      50135334
    • M
      bootvx: get mac address from environment · 62c93d92
      Mike Frysinger 提交于
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Niklaus Giger <niklaus.giger@member.fsf.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      62c93d92
    • M
      bdinfo: get mac address from environment · de2dff6f
      Mike Frysinger 提交于
      Add a new print_eth() function to automate the eth*addr env var acquisition
      and display.  Affects all arches.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
      CC: Scott McNutt <smcnutt@psyent.com>
      CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
      CC: Michal Simek <monstr@seznam.cz>
      CC: Daniel Hellstrom <daniel@gaisler.com>
      CC: Ben Warren <biggerbadderben@gmail.com>
      de2dff6f
    • M
      net: get mac address from environment and use eth util funcs · 95823ca0
      Mike Frysinger 提交于
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      95823ca0
    • M
      Blackfin: bfin_mac: force boards to setup the MAC themselves · 500b6c51
      Mike Frysinger 提交于
      Since the on-chip MAC does not have an eeprom or similar interface, force
      all Blackfin boards that use this driver to setup the board data with a
      proper MAC.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      500b6c51
    • M
      doc/README.enetaddr: document proper MAC usage · 6ff4137f
      Mike Frysinger 提交于
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      6ff4137f
    • M
      net: new utility functions for working with enetaddr's · 3f6e6993
      Mike Frysinger 提交于
      Declare new utility functions for converting between the environment
      variables (eth*addr) and the binary MAC address representation.  This way
      we can unify all the random places that already do this kind of thing.
      
      The functions in question:
      	eth_parse_enetaddr - "..." -> {...}
      	eth_getenv_enetaddr - env -> {...}
      	eth_setenv_enetaddr - {...} -> env
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      3f6e6993
    • M
      convert print_IPaddr() to %pI4 · b6446b67
      Mike Frysinger 提交于
      Now that our printf functions support the %pI4 modifier like the kernel,
      let's drop the inflexible print_IPaddr() function and covert over to the
      %pI4 modifier.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      CC: Ben Warren <biggerbadderben@gmail.com>
      b6446b67
    • M
      vsprintf: pull updates from Linux kernel · 6c6166f5
      Mike Frysinger 提交于
      This brings in support for the %p modifier which allows us to easily print
      out things like ip addresses, mac addresses, and pointers.
      
      It also converts the rarely used 'q' length modifier to the common 'L'
      modifier when dealing with quad types.
      
      While this new code is a bit larger (~1k .text), most of it should be made
      up by converting the existing ip/mac address code to use format modifiers.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      6c6166f5
    • J
      .gitignore for generated files in api_examples directory · a43ea5cc
      Jon Smirl 提交于
      Add .gitignore for generated files in api_examples directory
      Signed-off-by: NJon Smirl <jonsmirl@gmail.com>
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      a43ea5cc
    • N
      net: sh_eth: Remove sh_eth_reset() from halt function · 40281a9c
      Nobuhiro Iwamatsu 提交于
      sh_eth_reset is function to reset Ether IP.
      The MAC address is stored in IP, but it is initialized by this function.
      OS (e.g. Linux Kernel) can not use this device when initialized.
      This revises this problem.
      Signed-off-by: NNobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
      40281a9c