linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-09-01 06:00:39 to 2020-09-05 22:49:33 UTC [more...]

[PATCH v4 00/31] Improvements for Tegra I2C driver
 2020-09-05 22:49 UTC  (40+ messages)
` [PATCH v4 01/31] i2c: tegra: Make tegra_i2c_flush_fifos() usable in atomic transfer
` [PATCH v4 02/31] i2c: tegra: Handle potential error of tegra_i2c_flush_fifos()
` [PATCH v4 03/31] i2c: tegra: Initialization div-clk rate unconditionally
` [PATCH v4 04/31] i2c: tegra: Remove i2c_dev.clk_divisor_non_hs_mode member
` [PATCH v4 05/31] i2c: tegra: Runtime PM always available on Tegra
` [PATCH v4 06/31] i2c: tegra: Remove error message used for devm_request_irq() failure
` [PATCH v4 07/31] i2c: tegra: Use reset_control_reset()
` [PATCH v4 08/31] i2c: tegra: Use devm_platform_get_and_ioremap_resource()
` [PATCH v4 09/31] i2c: tegra: Use platform_get_irq()
` [PATCH v4 10/31] i2c: tegra: Use clk-bulk helpers
` [PATCH v4 11/31] i2c: tegra: Factor out runtime PM and hardware initialization
` [PATCH v4 12/31] i2c: tegra: Move out all device-tree parsing into tegra_i2c_parse_dt()
` [PATCH v4 13/31] i2c: tegra: Clean up probe function
` [PATCH v4 14/31] i2c: tegra: Remove likely/unlikely from the code
` [PATCH v4 15/31] i2c: tegra: Remove bogus barrier()
` [PATCH v4 16/31] i2c: tegra: Remove "dma" variable from tegra_i2c_xfer_msg()
` [PATCH v4 17/31] i2c: tegra: Improve formatting of function variables
` [PATCH v4 18/31] i2c: tegra: Improve coding style of tegra_i2c_wait_for_config_load()
` [PATCH v4 19/31] i2c: tegra: Rename wait/poll functions
` [PATCH v4 20/31] i2c: tegra: Rename variable in tegra_i2c_issue_bus_clear()
` [PATCH v4 21/31] i2c: tegra: Factor out error recovery from tegra_i2c_xfer_msg()
` [PATCH v4 22/31] i2c: tegra: Factor out packet header setup "
` [PATCH v4 23/31] i2c: tegra: Factor out register polling into separate function
` [PATCH v4 24/31] i2c: tegra: Reorder location of functions in the code
` [PATCH v4 25/31] i2c: tegra: Check errors for both positive and negative values
` [PATCH v4 26/31] i2c: tegra: Consolidate error handling in tegra_i2c_xfer_msg()
` [PATCH v4 27/31] i2c: tegra: Clean up printk messages
` [PATCH v4 28/31] i2c: tegra: Clean up whitespaces, newlines and indentation
` [PATCH v4 29/31] i2c: tegra: Improve driver module description
` [PATCH v4 30/31] i2c: tegra: Clean up and improve comments
` [PATCH v4 31/31] i2c: tegra: Rename couple "ret" variables to "err"

[PATCH] i2c: amd_mp2: handle num is 0 input for i2c_amd_xfer
 2020-09-05 12:33 UTC  (2+ messages)

[PATCH] dt-bindings: i2c: i2c-mt65xx: Update binding example
 2020-09-04 19:33 UTC 

[PATCH v2 1/4] dt-bindings: i2c: imx-lpi2c: Add properties and use unevaluatedProperties
 2020-09-04 15:14 UTC  (4+ messages)
` [PATCH v2 2/4] dt-bindings: i2c: imx-lpi2c: Fix i.MX 8QXP compatible matching
` [PATCH v2 3/4] dt-bindings: i2c: imx: Add properties and use unevaluatedProperties
` [PATCH v2 4/4] dt-bindings: i2c: imx: Fix i.MX 7 compatible matching

[PATCH 1/7] dt-bindings: clock: imx8m: Integrate duplicated i.MX 8M schemas
 2020-09-04 14:29 UTC  (9+ messages)
` [PATCH 3/7] dt-bindings: mailbox: fsl,mu: Use unevaluatedProperties
` [PATCH 4/7] dt-bindings: i2c: imx-lpi2c: "
` [PATCH 6/7] dt-bindings: i2c: imx: "

[PATCH] i2c: virtio: add a virtio i2c frontend driver
 2020-09-04 13:21 UTC  (11+ messages)

[PATCH 1/3] dt-bindings: i2c: ingenic: Add compatible string for the JZ4770
 2020-09-04 13:11 UTC  (3+ messages)
` [PATCH 2/3] i2c: jz4780: Add compatible string for JZ4770 SoC
` [PATCH 3/3] i2c: jz4780: Remove of_match_ptr()

[PATCH v3 0/3] nvmem: add ONIE NVMEM cells provider
 2020-09-04 11:23 UTC  (8+ messages)
` [PATCH v3 1/3] nvmem: core: allow to register cells during nvmem registration
` [PATCH v3 2/3] nvmem: add ONIE NVMEM cells support
` [PATCH v3 3/3] misc: eeprom: at24: register nvmem only after eeprom is ready to use

[RFC PATCH 0/4] i2c: core: add generic GPIO bus recovery
 2020-09-04  9:20 UTC  (7+ messages)
` [RFC PATCH 4/4] i2c: at91: Move to "
    `  "
        `  "

[PATCH] i2c: rcar: in slave mode, clear NACK earlier
 2020-09-04  6:21 UTC  (2+ messages)

[PATCH v1 00/12] Improvements for Tegra I2C driver
 2020-09-03 22:18 UTC  (13+ messages)
` [PATCH v1 03/12] i2c: tegra: Clean up messages in the code
` [PATCH v1 09/12] i2c: tegra: Clean up probe function

[PATCH v2 1/2] i2c: i801: Fix resume bug
 2020-09-03 17:17 UTC  (3+ messages)
` [PATCH v2 2/2] i2c: i801: Simplify the suspend callback

[PATCH v3 00/22] Improvements for Tegra I2C driver
 2020-09-03 15:56 UTC  (36+ messages)
` [PATCH v3 01/22] i2c: tegra: Make tegra_i2c_flush_fifos() usable in atomic transfer
` [PATCH v3 02/22] i2c: tegra: Add missing newline before returns
` [PATCH v3 03/22] i2c: tegra: Clean up messages in the code
` [PATCH v3 04/22] i2c: tegra: Don't ignore tegra_i2c_flush_fifos() error
` [PATCH v3 05/22] i2c: tegra: Use reset_control_reset()
` [PATCH v3 06/22] i2c: tegra: Improve formatting of function variables
` [PATCH v3 07/22] i2c: tegra: Use dev_err_probe()
` [PATCH v3 08/22] i2c: tegra: Runtime PM always available on Tegra
` [PATCH v3 09/22] i2c: tegra: Clean up probe function
` [PATCH v3 10/22] i2c: tegra: Drop '_timeout' from wait/poll function names
` [PATCH v3 11/22] i2c: tegra: Remove likely/unlikely from the code
` [PATCH v3 12/22] i2c: tegra: Factor out error recovery from tegra_i2c_xfer_msg()
` [PATCH v3 13/22] i2c: tegra: Check errors for both positive and negative values
` [PATCH v3 14/22] i2c: tegra: Improve coding style of tegra_i2c_wait_for_config_load()
` [PATCH v3 15/22] i2c: tegra: Clean up whitespaces and newlines
` [PATCH v3 16/22] i2c: tegra: Rename variable in tegra_i2c_issue_bus_clear()
` [PATCH v3 17/22] i2c: tegra: Improve driver module description
` [PATCH v3 18/22] i2c: tegra: Reorder location of functions in the code
` [PATCH v3 19/22] i2c: tegra: Factor out packet header setup from tegra_i2c_xfer_msg()
` [PATCH v3 20/22] i2c: tegra: Remove "dma" variable
` [PATCH v3 21/22] i2c: tegra: Initialization div-clk rate unconditionally
` [PATCH v3 22/22] i2c: tegra: Remove i2c_dev.clk_divisor_non_hs_mode member

[PATCH i2c-tools] add BUGS section to manpages
 2020-09-03 15:06 UTC  (3+ messages)

[PATCH v2] libi2c: Add a manual page to document the API
 2020-09-03 10:09 UTC 

[PATCH] i2cset: Fix short writes with mask
 2020-09-03  9:00 UTC 

[PATCH v8 0/6] Support running driver's probe for a device powered off
 2020-09-03  8:15 UTC  (7+ messages)
` [PATCH v8 1/6] i2c: Allow an ACPI driver to manage the device's power state during probe
` [PATCH v8 2/6] Documentation: ACPI: Document i2c-allow-low-power-probe _DSD property
` [PATCH v8 3/6] ACPI: Add a convenience function to tell a device is in low power state
` [PATCH v8 4/6] ov5670: Support probe whilst the device is in a "
` [PATCH v8 5/6] media: i2c: imx319: Support probe while the device is off
` [PATCH v8 6/6] at24: Support probing while off

[PATCH v2] ARM: davinci: use simple i2c probe function
 2020-09-03  5:38 UTC  (3+ messages)

[PATCH 1/9] i2c: stm32: Simplify with dev_err_probe()
 2020-09-03  5:36 UTC  (14+ messages)
` [PATCH 2/9] i2c: xiic: "
` [PATCH 3/9] i2c: bcm2835: "
` [PATCH 4/9] i2c: cadence: "
` [PATCH 5/9] i2c: davinci: "
` [PATCH 6/9] i2c: imx: "
` [PATCH 7/9] i2c: rk3x: "
` [PATCH 8/9] i2c: mux: gpmux: "
` [PATCH 9/9] i2c: mux: reg: "

[PATCH v3 1/1] i2c: algo-pca: Reapply i2c bus settings after reset
 2020-09-02 21:15 UTC 

[PATCH v2 1/1] i2c: algo-pca: Reapply i2c bus settings after reset
 2020-09-02 20:57 UTC  (4+ messages)

[PATCH v7 0/6] Support running driver's probe for a device powered off
 2020-09-02 19:59 UTC  (11+ messages)
` [PATCH v7 1/6] i2c: Allow an ACPI driver to manage the device's power state during probe
` [PATCH v7 2/6] ACPI: Add a convenience function to tell a device is in low power state
` [PATCH v7 3/6] ov5670: Support probe whilst the device is in a "
` [PATCH v7 4/6] media: i2c: imx319: Support probe while the device is off
` [PATCH v7 5/6] at24: Support probing while off
` [PATCH v7 6/6] Documentation: ACPI: Document allow-low-power-probe _DSD property

[PATCH 0/5] input: misc: Add IBM Operation Panel driver
 2020-09-02 15:47 UTC  (11+ messages)
` [PATCH 1/5] dt-bindings: input: Add documentation for IBM Operation Panel
` [PATCH 2/5] input: misc: Add IBM Operation Panel driver
` [PATCH 4/5] ARM: dts: Aspeed: Tacoma: Add IBM Operation Panel I2C device
` [PATCH 5/5] ARM: dts: Aspeed: Rainier: "

[PATCH] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480
 2020-09-02  4:51 UTC  (2+ messages)
` [PATCH v2] "

[PATCH v2 00/17] Improvements for Tegra I2C driver
 2020-09-01 21:37 UTC  (19+ messages)
` [PATCH v2 01/17] i2c: tegra: Make tegra_i2c_flush_fifos() usable in atomic transfer
` [PATCH v2 02/17] i2c: tegra: Add missing newline before returns
` [PATCH v2 03/17] i2c: tegra: Clean up messages in the code
` [PATCH v2 04/17] i2c: tegra: Don't ignore tegra_i2c_flush_fifos() error
` [PATCH v2 05/17] i2c: tegra: Use reset_control_reset()
` [PATCH v2 06/17] i2c: tegra: Improve formatting of function variables
` [PATCH v2 07/17] i2c: tegra: Use dev_err_probe()
` [PATCH v2 08/17] i2c: tegra: Runtime PM always available on Tegra
` [PATCH v2 09/17] i2c: tegra: Clean up probe function
` [PATCH v2 10/17] i2c: tegra: Drop '_timeout' from wait/poll function names
` [PATCH v2 11/17] i2c: tegra: Remove likely/unlikely from the code
` [PATCH v2 12/17] i2c: tegra: Factor out error recovery from tegra_i2c_xfer_msg()
` [PATCH v2 13/17] i2c: tegra: Check errors for both positive and negative values
` [PATCH v2 14/17] i2c: tegra: Improve coding style of tegra_i2c_wait_for_config_load()
` [PATCH v2 15/17] i2c: tegra: Remove unnecessary whitespaces and newlines
` [PATCH v2 16/17] i2c: tegra: Rename variable in tegra_i2c_issue_bus_clear()
` [PATCH v2 17/17] i2c: tegra: Improve driver module description

[PATCH] i2c: algo-pca: Reapply i2c bus settings after reset
 2020-09-01 20:58 UTC  (5+ messages)

[PATCH v6 0/6] Support running driver's probe for a device powered off
 2020-09-01 20:28 UTC  (5+ messages)
` [PATCH v6 6/6] Documentation: ACPI: Document allow-low-power-probe _DSD property

[PATCH] watchdog: da9063: wake up parent ahead of reboot
 2020-09-01 16:48 UTC  (2+ messages)

[PATCH v5 00/16] Allwinner A100 Initial support
 2020-09-01  9:35 UTC  (3+ messages)

[PATCH] i2c: i801: Fix resume bug
 2020-09-01  9:35 UTC  (4+ messages)

[PATCH 1/2] i2c: i801: Fix runtime PM
 2020-09-01  8:19 UTC  (4+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).