09 Mar, 2018

1 commit

  • The following config symbols are only defined once and never referenced
    anywhere else:

    CONFIG_AT91SAM9263EK
    CONFIG_AT91SAM9RLEK
    CONFIG_BARIX_IPAM390
    CONFIG_BOARD_H2200
    CONFIG_EP9301
    CONFIG_KZM_A9_GT
    CONFIG_PICOSAM
    CONFIG_PLATINUM_PICON
    CONFIG_PLATINUM_TITANIUM
    CONFIG_PM9261
    CONFIG_PM9263
    CONFIG_PM9G45
    CONFIG_SIEMENS_DRACO
    CONFIG_SIEMENS_PXM2
    CONFIG_SIEMENS_RUT
    CONFIG_SMDKC100
    CONFIG_SMDKV310
    CONFIG_STM32F4DISCOVERY

    Most of them are config symbols named after the respective boards which
    seems to have been a standard practice at some point.

    Signed-off-by: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

06 Nov, 2017

1 commit


15 May, 2017

1 commit

  • Move this entry to Kconfig. As it is a hardware watchdog, select
    HW_WATCHDOG. While we could default to enabling this for all platforms,
    it is currently only enabled by default on AM33XX, so keep that logic
    today.

    Cc: Roger Meier
    Signed-off-by: Tom Rini

    Tom Rini
     

12 May, 2017

1 commit


30 Apr, 2017

1 commit


29 Jan, 2017

1 commit


19 Nov, 2016

1 commit


24 Oct, 2016

4 commits


17 Sep, 2016

3 commits


10 Jun, 2016

2 commits


26 Apr, 2016

1 commit


15 Mar, 2016

1 commit

  • There are already two FIT options in Kconfig but the CONFIG options are
    still in the header files. We need to do a proper move to fix this.

    Move these options to Kconfig and tidy up board configuration:

    CONFIG_FIT
    CONFIG_OF_BOARD_SETUP
    CONFIG_OF_SYSTEM_SETUP
    CONFIG_FIT_SIGNATURE
    CONFIG_FIT_BEST_MATCH
    CONFIG_FIT_VERBOSE
    CONFIG_OF_STDOUT_VIA_ALIAS
    CONFIG_RSA

    Unfortunately the first one is a little complicated. We need to make sure
    this option is not enabled in SPL by this change. Also this option is
    enabled automatically in the host builds by defining CONFIG_FIT in the
    image.h file. To solve this, add a new IMAGE_USE_FIT #define which can
    be used in files that are built on the host but must also build for U-Boot
    and SPL.

    Note: Masahiro's moveconfig.py script is amazing.

    Signed-off-by: Simon Glass
    [trini: Add microblaze change, various configs/ re-applies]
    Signed-off-by: Tom Rini

    Simon Glass
     

20 Jun, 2015

1 commit

  • updates for the siemens am335x based boards:

    - draco: add delay for DDR3 configuration
    - change MTD partition layout and add a possibility
    to redefine MTD layout in board header.
    - move ubi support to common header file
    - draco: improve dtb naming
    - draco: set CONFIG_SYS_CBSIZE to 1024
    - add generic env based led
    Leds can now be defined in Environment
    - add generic env based dfu button
    Which gpio is used for the dfu button can be defined
    through the Environment
    - set MACH_TYPE only if defined
    - draco: increase CPU freq to 300MHz
    - Add time command to siemens am33xx boards
    - DDR3: increase default tRFC
    - draco: enable pullup for DFU and ERST pin
    - change print format DDR3

    Signed-off-by: Samuel Egli
    Acked-by: Heiko Schocher
    Reviewed-by: Tom Rini

    Signed-off-by: Heiko Schocher

    Heiko Schocher
     

05 Dec, 2014

1 commit


14 May, 2014

1 commit


04 Mar, 2014

1 commit


12 Nov, 2013

1 commit

  • - dxr2: define unused pins as input
    - do not enable RTC32K OSC on dxr2 board
    - update default environment
    - add splashpos=m,m to default environment, so splash screen is always
    centered.
    - adapt environment for bootcount feature
    - add altbootcmd to default environment
    - rut: SPL add early reset pulse for eth-phy, maXTouch and display
    - rut: display timing aenderungen
    - siemens boards: adapt for background color = white
    - add boutcount feature for the siemens boards
    store the bootcount in the environment, as we have no softreset
    save registers on this hardware. Use therefore the CONFIG_BOOTCOUNT_ENV
    bootcount driver.
    - change spi mode from 3 to 0 for the lcd init
    - add gpio pin for lcd reset with state 0 and add mdelay
    - siemens boards: use own USB id's
    - add dfu serial and device number for siemens boards
    Add for the siemens boards the possibility to define in dfu mode,
    the iSerialNumber and the bcdDevice fields in the USB Device
    descriptor.
    - fix upgrade mechanism based on bootcount
    Correct location of saveenv and remove not active variable.

    Add CONFIG_BOOT_RETRY_TIME and CONFIG_RESET_TO_RETRY to
    reboot board in case of empty kernel partition. Without
    these defines an empty kernel partition leads to an
    abort of boot process and one remains in u-boot prompt.

    - general cleanup of dxr2, pxm2 and rut boards
    all:
    * Remove net boot from bootcmd
    Ping can cause a crash on boards without ethernet phy.
    net_nfs command is used only for development

    * Add reset at the end of bootcmd
    In order to have an immediate reset of the boot when bootcmd
    fails, add reset at the end of bootcmd.

    rut:
    * add nand_img_size

    dxr2:
    * update nand_img_size

    * ddr3 timings updated with iocontrol property that can be
    modified via eeprom. New default parameters from software
    leveling with draco ES2.

    Signed-off-by: Samuel Egli
    Signed-off-by: Pascal Bach
    Signed-off-by: Roger Meier
    Signed-off-by: Heiko Schocher
    Cc: Matthias Michel
    Cc: Tom Rini

    Samuel Egli
     

28 Aug, 2013

1 commit

  • add support for the am335x based boards from siemens:

    dxr2:
    - DDR3 128MiB
    - NAND 256MiB
    - Ethernet with external Switch SMSC LAN9303
    - no PMIC
    - internal Watchdog
    - DFU support

    pxm2:
    - DDR2 512 MiB
    - NAND 1024 MiB
    - PMIC
    - PHY atheros ar803x
    - USB Host
    - internal Watchdog
    - DFU support

    rut:
    - DDR3 256 MiB
    - NAND 256 MiB
    - PMIC
    - PHY natsemi dp83630
    - external Watchdog
    - DFU support

    Signed-off-by: Heiko Schocher
    Signed-off-by: Roger Meier
    Signed-off-by: Samuel Egli
    Cc: Pascal Bach
    Cc: Tom Rini

    Heiko Schocher