SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So
SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So we picked thearea of the file that usually had a full license text and replaced itwith an appropriate SPDX-License-Identifier: entry. Since then, theLinux Kernel has adopted SPDX tags and they place it as the very firstline in a file (except where shebangs are used, then it's second line)and with slightly different comment styles than us.In part due to community overlap, in part due to better tag visibilityand in part for other minor reasons, switch over to that style.This commit changes all instances where we have a single declaredlicense in the tag as both the before and after are identical in tagcontents. There's also a few places where I found we did not have a tagand have introduced one.Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
Add GPL-2.0+ SPDX-License-Identifier to source filesSigned-off-by: Wolfgang Denk <wd@denx.de>[trini: Fixup common/cmd_io.c]Signed-off-by: Tom Rini <trini@ti.com>
LaCie/common: add support for the CPLD GPIO busThis patch adds support for the CPLD GPIO bus found on some LaCie boards(as the 2Big/5Big Network v2 and the 2Big NAS). This parallel GPIO busexpose
LaCie/common: add support for the CPLD GPIO busThis patch adds support for the CPLD GPIO bus found on some LaCie boards(as the 2Big/5Big Network v2 and the 2Big NAS). This parallel GPIO busexposes two registers (address and data). Each of this register is madeup of several dedicated GPIOs. An extra GPIO is used to notify the CPLDthat the registers have been updated.Mostly this bus is used to configure the LEDs on LaCie boards.Signed-off-by: Simon Guinot <simon.guinot@sequanux.org>
ARM: add support for Network Space v2 Lite and MiniThis patch adds support for the LaCie boards Network Space v2 (Lite andMini). This two boards are derived from the Network Space v2 and a lotof
ARM: add support for Network Space v2 Lite and MiniThis patch adds support for the LaCie boards Network Space v2 (Lite andMini). This two boards are derived from the Network Space v2 and a lotof hardware caracteristics are shared.- CPU: Marvell 88F6192 800Mhz- SDRAM memory: 128MB DDR2 200Mhz- 1 SATA port: internal- Gigabit ethernet: PHY Marvell 88E1318- Flash memory: SPI NOR 512KB (Macronix MX25L4005A)- i2c EEPROM: 512 bytes (24C04 type)- 2 USB2 ports (Lite only): host and host/device- 1 push button- 1 SATA LED (bi-color, blue and red)Signed-off-by: Simon Guinot <simon.guinot@sequanux.org>
ARM: don't probe PHY address for LaCie boardsThe command miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr) alwaysreturns 8 for the PHY address. It is the reset value for the PHYAddress Register. Obv
ARM: don't probe PHY address for LaCie boardsThe command miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr) alwaysreturns 8 for the PHY address. It is the reset value for the PHYAddress Register. Obviously, this default value could be incorrect.Moreover, as the PHY address is well known, there is no need toauto-detect it.Now, the PHY address must given as a parameter to the PHY initializationfunction. Additionally this patch also fixes some aesthetic issues.Signed-off-by: Simon Guinot <simon.guinot@sequanux.org>
ARM: remove duplicated code for LaCie boardsThis patch groups together all the common functions for LaCie boards:Ethernet PHY and MAC address initializations.Moreover the configurations for LaCi
ARM: remove duplicated code for LaCie boardsThis patch groups together all the common functions for LaCie boards:Ethernet PHY and MAC address initializations.Moreover the configurations for LaCie Kirkwood boards are merged intoa single file: include/configs/lacie_kw.hSigned-off-by: Simon Guinot <simon.guinot@sequanux.org>