19 Jan, 2019

1 commit

  • The bounce buffer is used by a few drivers (most of the MMC drivers)
    to overcome limitations in their respective DMA implementation.

    This moves the configuration to Kconfig and makes it user-selectable
    (even though it will be a required feature to make those drivers
    work): the expected usage is for drivers depending on this to 'select'
    it unconditionally from their respective Kconfig (see follow-up
    patches).

    This commit includes a full migration using moveconfig.py to ensure
    that each commit compiles. To ensure bisectability we update
    dependencies of various drivers to now select BOUNCE_BUFFER when needed.

    [trini: Squash all patches to ensure bisectability]
    Signed-off-by: Tom Rini
    Signed-off-by: Philipp Tomsich
    Reviewed-by: Otavio Salvador [dw_mmc portion]
    Reviewed-by: Fabio Estevam [mxsmmc portion]
    Reviewed-by: Simon Glass [tegra portion]

    Philipp Tomsich
     

04 Sep, 2018

1 commit


18 Aug, 2018

1 commit


17 Aug, 2018

1 commit

  • We have the following cases:
    - CONFIG_NR_DRAM_BANKS was defined, migrate normally
    - CONFIG_NR_DRAM_BANKS_MAX was defined and then used for
    CONFIG_NR_DRAM_BANKS after a check, just migrate it over now.
    - CONFIG_NR_DRAM_BANKS was very oddly defined on p2771-0000-* (to 1024 +
    2), set this to 8.

    Signed-off-by: Tom Rini

    Tom Rini
     

04 Jun, 2018

1 commit


30 May, 2018

1 commit

  • Separate CMD_FASTBOOT from FASTBOOT and move code and configuration to
    drivers/fastboot.

    Switch dependencies on FASTBOOT to USB_FUNCTION_FASTBOOT as anyone who wants
    FASTBOOT before this series wants USB_FUNCTION_FASTBOOT. Split
    USB_FUNCTION_FASTBOOT from FASTBOOT so they retain their existing
    behaviour.

    Signed-off-by: Alex Kiernan
    Reviewed-by: Simon Glass
    Acked-by: Joe Hershberger

    Alex Kiernan
     

18 May, 2018

7 commits

  • Enable Secure boot(HAB) for BTicino Mamoj board.

    Signed-off-by: Jagan Teki

    Jagan Teki
     
  • Add Falcon mode support to boot Linux directly after SPL.

    Signed-off-by: Jagan Teki

    Jagan Teki
     
  • Add DFU support for BTicino Mamoj board and update
    the same steps in README.

    Signed-off-by: Jagan Teki
    Signed-off-by: Simone CIANNI
    Signed-off-by: Raffaele RECALCATI

    Jagan Teki
     
  • Enable fastboot and ums for host to interact eMMC on
    Mamoj board.

    Signed-off-by: Jagan Teki
    Signed-off-by: Simone CIANNI
    Signed-off-by: Raffaele RECALCATI

    Jagan Teki
     
  • MX6DL Mamoj boards has Freescale PFUZE100 PMIC, add support
    for it through DM_PMIC dt definition.

    pmic log:
    Reviewed-by: Stefano Babic

    ========
    => pmic list
    | Name | Parent name | Parent uclass @ seq
    | pfuze100@08 | i2c@021f8000 | i2c @ 3
    => pmic dev pfuze100@08
    dev: 0 @ pfuze100@08
    => pmic dump
    Dump pmic: pfuze100@08 registers

    0x00: 10 00 00 21 00 01 3f 01 00 7f 00 00 00 00 00 81
    0x10: 00 00 3f 00 00 00 00 00 00 00 00 10 00 00 00 00
    0x20: 2b 2b 2b 08 c4 00 00 00 00 00 00 00 00 00 2b 2b
    0x30: 2b 08 c4 00 00 72 72 72 08 d4 00 00 2c 2c 2c 08
    0x40: e4 00 00 2c 2c 2c 08 e4 00 00 6f 6f 6f 08 f4 00
    0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    0x60: 00 00 00 00 00 00 48 00 00 00 10 06 1e 1e 17 10
    0x70: 1a 1f 00 00 00 00 00 00 00 00 00 00 00 00 00

    Signed-off-by: Jagan Teki
    Signed-off-by: Simone CIANNI
    Signed-off-by: Raffaele RECALCATI

    Jagan Teki
     
  • i.MX6DL Mamoj has i2c3 and i2c4 buses, add support
    through DM_I2C with dt definition.

    i2c log:
    Reviewed-by: Stefano Babic

    =======
    => i2c bus
    Bus 2: i2c@021a8000
    Bus 3: i2c@021f8000
    => i2c dev 2
    Setting bus to 2
    => i2c speed 400000
    Setting bus speed to 400000 Hz
    => i2c probe
    Valid chip addresses: 20 51 53
    => i2c md 53 0xff
    00ff: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
    => i2c md 51 0xff
    00ff: a8 08 40 50 09 43 46 52 42 18 80 8e ae a9 d0 53 ..@P.CFRB......S
    => i2c dev 3
    Setting bus to 3
    => i2c speed 100000
    Setting bus speed to 100000 Hz
    => i2c probe
    Valid chip addresses: 08 40 48 4B
    => i2c md 08 0xff
    00ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................

    Signed-off-by: Jagan Teki
    Signed-off-by: Simone CIANNI
    Signed-off-by: Raffaele RECALCATI

    Jagan Teki
     
  • Add initial support for i.MX6DL BTicino Mamoj board.

    Mamoh board added:
    - SPL
    - SPL_DM
    - SPL_OF_CONTROL
    - DM for U-Boot proper
    - OF_CONTROL for U-Boot proper
    - eMMC
    - FEC
    - Boot from eMMC
    - Boot from USB SDP

    Signed-off-by: Simone CIANNI
    Signed-off-by: Raffaele RECALCATI
    Signed-off-by: Jagan Teki

    Jagan Teki