1. 24 7月, 2015 1 次提交
  2. 22 6月, 2015 1 次提交
  3. 15 6月, 2015 1 次提交
  4. 04 4月, 2015 1 次提交
  5. 30 3月, 2015 1 次提交
  6. 26 3月, 2015 1 次提交
  7. 12 3月, 2015 3 次提交
  8. 04 3月, 2015 3 次提交
  9. 26 2月, 2015 1 次提交
  10. 23 1月, 2015 2 次提交
  11. 22 1月, 2015 2 次提交
  12. 01 12月, 2014 1 次提交
  13. 26 11月, 2014 2 次提交
  14. 11 11月, 2014 1 次提交
    • O
      mfd: Add support for Diolan DLN-2 devices · 338a1281
      Octavian Purdila 提交于
      This patch implements the USB part of the Diolan USB-I2C/SPI/GPIO
      Master Adapter DLN-2. Details about the device can be found here:
      
      https://www.diolan.com/i2c/i2c_interface.html.
      
      Information about the USB protocol can be found in the Programmer's
      Reference Manual [1], see section 1.7.
      
      Because the hardware has a single transmit endpoint and a single
      receive endpoint the communication between the various DLN2 drivers
      and the hardware will be muxed/demuxed by this driver.
      
      Each DLN2 module will be identified by the handle field within the DLN2
      message header. If a DLN2 module issues multiple commands in parallel
      they will be identified by the echo counter field in the message header.
      
      The DLN2 modules can use the dln2_transfer() function to issue a
      command and wait for its response. They can also register a callback
      that is going to be called when a specific event id is generated by
      the device (e.g. GPIO interrupts). The device uses handle 0 for
      sending events.
      
      [1] https://www.diolan.com/downloads/dln-api-manual.pdfSigned-off-by: NOctavian Purdila <octavian.purdila@intel.com>
      Reviewed-by: NJohan Hovold <johan@kernel.org>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      338a1281
  15. 07 10月, 2014 1 次提交
  16. 26 9月, 2014 5 次提交
  17. 24 9月, 2014 1 次提交
  18. 25 7月, 2014 1 次提交
  19. 21 7月, 2014 1 次提交
  20. 09 7月, 2014 4 次提交
  21. 26 6月, 2014 3 次提交
    • A
      mfd: davinci: Voicecodec needs regmap_mmio · 9e888487
      Arnd Bergmann 提交于
      Without REGMAP_MMIO, building that driver results in a link error:
      
      drivers/built-in.o: In function `davinci_vc_probe':
      :(.init.text+0x3c1c): undefined reference to `devm_regmap_init_mmio_clk'
      
      This adds a Kconfig 'select' statement as the usual way to ensure
      that REGMAP_MMIO is enabled.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      9e888487
    • A
      mfd: STw481x: Allow modular build · f41716dc
      Arnd Bergmann 提交于
      This driver depends on I2C, which may be a loadable module.
      While you'd probably want both to be built-in in practice,
      allowing a modular build avoids possible randconfig link
      errors.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      f41716dc
    • A
      mfd: UCB1x00: Enable modular build · 1c93c725
      Arnd Bergmann 提交于
      The UCB1200 / UCB1300 driver uses the MCP_SA11X0 driver, which
      can be a loadable module, but this results in a link error
      when UCB1200 itself is built-in:
      
      drivers/built-in.o: In function `ucb1x00_io_set_dir':
      :(.text+0x4a364): undefined reference to `mcp_reg_write'
      drivers/built-in.o: In function `ucb1x00_io_write':
      :(.text+0x4a3dc): undefined reference to `mcp_reg_write'
      drivers/built-in.o: In function `ucb1x00_io_read':
      :(.text+0x4a400): undefined reference to `mcp_reg_read'
      drivers/built-in.o: In function `ucb1x00_adc_enable':
      :(.text+0x4a460): undefined reference to `mcp_enable'
      ...
      
      This can easily be resolved by making CONFIG_MCP_UCB1200 itself
      a tristate option, since that causes Kconfig to track the
      dependency correctly.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      1c93c725
  22. 17 6月, 2014 2 次提交
  23. 03 6月, 2014 1 次提交