1. 02 7月, 2019 2 次提交
  2. 12 4月, 2019 2 次提交
  3. 19 2月, 2019 4 次提交
  4. 12 2月, 2019 2 次提交
  5. 10 1月, 2019 2 次提交
  6. 06 12月, 2018 1 次提交
  7. 10 7月, 2018 1 次提交
  8. 26 6月, 2018 3 次提交
  9. 02 5月, 2018 1 次提交
  10. 01 5月, 2018 1 次提交
  11. 19 2月, 2018 4 次提交
  12. 23 5月, 2017 1 次提交
  13. 28 11月, 2016 1 次提交
    • A
      ARM: davinci: da830-evm: use gpio descriptor for mmc pins · b5e1438c
      Axel Haslam 提交于
      Currently the mmc driver is polling the gpio to know if the
      card was removed.
      
      By using a gpio descriptor instead of the platform callbacks,
      the driver will be able to register the gpio using the mmc core
      APIs designed for this purpose.
      
      This has the advantage that an irq will be registered, and
      polling is no longer needed. Also, a dependency on platform
      callbacks is removed for this board.
      Signed-off-by: NAxel Haslam <ahaslam@baylibre.com>
      [nsekhar@ti.com: minor commit message edit]
      Signed-off-by: NSekhar Nori <nsekhar@ti.com>
      b5e1438c
  14. 01 11月, 2016 1 次提交
    • D
      ARM: davinci: da8xx: add usb phy clocks · 0004b02a
      David Lechner 提交于
      Up to this point, the USB phy clock configuration was handled manually in
      the board files and in the usb drivers. This adds proper clocks so that
      the usb drivers can use clk_get and clk_enable and not have to worry about
      the details. Also, the related code is removed from the board files and
      replaced with the new clock registration functions.
      
      This also removes the #if IS_ENABLED(CONFIG_USB_MUSB_HDRC) around the musb
      declaration and renames the musb platform device so that we can reference
      it from the usb20 clock even if the musb device is not used.
      Signed-off-by: NDavid Lechner <david@lechnology.com>
      Signed-off-by: NAxel Haslam <ahaslam@baylibre.com>
      Signed-off-by: NSekhar Nori <nsekhar@ti.com>
      0004b02a
  15. 31 10月, 2016 4 次提交
  16. 02 12月, 2015 1 次提交
  17. 18 11月, 2014 1 次提交
  18. 23 2月, 2014 1 次提交
    • I
      ARM: davinci: aemif: get rid of davinci-nand driver dependency on aemif · 67f5185c
      Ivan Khoronzhuk 提交于
      The problem that the set timings code contains the call of Davinci
      platform function davinci_aemif_setup_timing() which is not
      accessible if kernel is built for another platform like Keystone.
      
      The Keysone platform is going to use TI AEMIF driver.
      If TI AEMIF is used we don't need to set timings and bus width.
      It is done by AEMIF driver.
      
      To get rid of davinci-nand driver dependency on aemif platform code
      we moved aemif code to davinci platform.
      
      The platform AEMIF code (aemif.c) has to be removed once Davinci
      will be converted to DT and use ti-aemif.c driver.
      Acked-by: NBrian Norris <computersforpeace@gmail.com>
      Signed-off-by: NIvan Khoronzhuk <ivan.khoronzhuk@ti.com>
      [nsekhar@ti.com: fixed checkpatch error and a build breakage due to
      		 missing include, rebased onto l2-mtd/master]
      Signed-off-by: NSekhar Nori <nsekhar@ti.com>
      67f5185c
  19. 08 10月, 2013 1 次提交
  20. 30 9月, 2013 1 次提交
  21. 25 9月, 2013 1 次提交
  22. 22 8月, 2013 1 次提交
  23. 03 4月, 2013 1 次提交
  24. 02 4月, 2013 1 次提交
  25. 03 1月, 2013 1 次提交
    • V
      ARM: davinci: da8xx_register_spi() should not register SPI board info · 0273612c
      Vivien Didelot 提交于
      Without this patch, da8xx_register_spi() registers the SPI board info,
      the SPI controller, and sets its number of chipselect to the size of the
      static spi_board_info array. This is bad because a SPI board info may
      declare devices for different SPI buses, and because other code can also
      call spi_register_board_info() (e.g. a daughter board might provide
      additional SPI devices).
      
      This patch removes the spi_register_board_info() call from
      da8xx_register_spi(), renames this last one to da8xx_register_spi_bus()
      to be more explicit, takes the number of chipselect as a function
      parameter, and updates the impacted board-da8{3,5}0-evm.c, and
      board-mityomapl138.c files accordingly. It also sets the SPI platform
      data static, as it doesn't need to be exported.
      Signed-off-by: NVivien Didelot <vivien.didelot@savoirfairelinux.com>
      [nsekhar@ti.com: fixed conflicts with v3.7-rc7, converted to use pr_warn(),
      modified print messages to use __func__]
      Signed-off-by: NSekhar Nori <nsekhar@ti.com>
      0273612c