linux-samsung-soc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-01-22 07:24:14 to 2024-01-25 15:16:41 UTC [more...]

[PATCH 0/7] ARM: dts: samsung: specify the SPI fifosize
 2024-01-25 15:16 UTC 

[PATCH v2 00/28] spi: s3c64xx: winter cleanup and gs101 support
 2024-01-25 14:50 UTC  (29+ messages)
` [PATCH v2 01/28] spi: s3c64xx: explicitly include <linux/io.h>
` [PATCH v2 02/28] spi: s3c64xx: explicitly include <linux/bits.h>
` [PATCH v2 03/28] spi: s3c64xx: avoid possible negative array index
` [PATCH v2 04/28] spi: dt-bindings: samsung: add google,gs101-spi compatible
` [PATCH v2 05/28] spi: dt-bindings: samsung: add samsung,spi-fifosize property
` [PATCH v2 06/28] spi: s3c64xx: sort headers alphabetically
` [PATCH v2 07/28] spi: s3c64xx: remove unneeded (void *) casts in of_match_table
` [PATCH v2 08/28] spi: s3c64xx: remove else after return
` [PATCH v2 09/28] spi: s3c64xx: use bitfield access macros
` [PATCH v2 10/28] spi: s3c64xx: use full mask for {RX, TX}_FIFO_LVL
` [PATCH v2 11/28] spi: s3c64xx: move common code outside if else
` [PATCH v2 12/28] spi: s3c64xx: check return code of dmaengine_slave_config()
` [PATCH v2 13/28] spi: s3c64xx: propagate the dma_submit_error() error code
` [PATCH v2 14/28] spi: s3c64xx: rename prepare_dma() to s3c64xx_prepare_dma()
` [PATCH v2 15/28] spi: s3c64xx: return ETIMEDOUT for wait_for_completion_timeout()
` [PATCH v2 16/28] spi: s3c64xx: simplify s3c64xx_wait_for_pio()
` [PATCH v2 17/28] spi: s3c64xx: drop blank line between declarations
` [PATCH v2 18/28] spi: s3c64xx: fix typo, s/configuartion/configuration
` [PATCH v2 19/28] spi: s3c64xx: downgrade dev_warn to dev_dbg for optional dt props
` [PATCH v2 20/28] spi: s3c64xx: add support for inferring fifosize from the compatible
` [PATCH v2 21/28] spi: s3c64xx: infer "
` [PATCH v2 22/28] spi: s3c64xx: drop dependency on of_alias where possible
` [PATCH v2 23/28] spi: s3c64xx: retrieve the FIFO size from the device tree
` [PATCH v2 24/28] spi: s3c64xx: mark fifo_lvl_mask as deprecated
` [PATCH v2 25/28] asm-generic/io.h: add iowrite{8,16}_32 accessors
` [PATCH v2 26/28] spi: s3c64xx: add iowrite{8,16}_32_rep accessors
` [PATCH v2 27/28] spi: s3c64xx: add support for google,gs101-spi
` [PATCH v2 28/28] MAINTAINERS: add Tudor Ambarus as R for the samsung SPI driver

[PATCH v5 000/111] pwm: Improve lifetime tracking for pwm_chips
 2024-01-25 14:14 UTC  (8+ messages)
` [PATCH v5 003/111] pwm: Provide a macro to get the parent device of a given chip
` [PATCH v5 026/111] pwm: samsung: Make use of pwmchip_parent() macro
` [PATCH v5 039/111] pwm: Provide wrappers for storing and getting driver private data
` [PATCH v5 040/111] pwm: Provide devm_pwmchip_alloc() function
` [PATCH v5 085/111] pwm: samsung: Make use of "

[PATCH 1/2] dt-bindings: samsung: exynos-sysreg: gs101-peric0 requires a clock
 2024-01-25 14:10 UTC  (4+ messages)
` [PATCH 2/2] arm64: dts: exynos: gs101: sysreg_peric1 needs "
  ` [PATCH v2] arm64: dts: exynos: gs101: sysreg_peric0 "

[PATCH 0/7] arm64: exynos: Enable SPI for Exynos850
 2024-01-25 14:02 UTC  (18+ messages)
` [PATCH 1/7] dt-bindings: clock: exynos850: Add PDMA clocks
  ` (subset) "
` [PATCH 2/7] dt-bindings: spi: samsung: Add Exynos850 SPI
` [PATCH 3/7] clk: samsung: exynos850: Add PDMA clocks
  ` (subset) "
` [PATCH 4/7] clk: samsung: exynos850: Propagate SPI IPCLK rate change
` [PATCH 5/7] spi: s3c64xx: Add Exynos850 support
` [PATCH 6/7] arm64: dts: exynos: Add PDMA node for Exynos850
` [PATCH 7/7] arm64: dts: exynos: Add SPI nodes "
` (subset) [PATCH 0/7] arm64: exynos: Enable SPI "

[PATCH v2 0/2] spi: samsung: Add Exynos850 support
 2024-01-25 13:36 UTC  (4+ messages)
` [PATCH v2 1/2] spi: dt-bindings: samsung: Add Exynos850 SPI
` [PATCH v2 2/2] spi: s3c64xx: Add Exynos850 support

[PATCH 00/21] spi: s3c64xx: winter cleanup and gs101 support
 2024-01-25 13:32 UTC  (46+ messages)
` [PATCH 01/21] spi: dt-bindings: samsung: add google,gs101-spi compatible
` [PATCH 02/21] spi: s3c64xx: sort headers alphabetically
` [PATCH 03/21] spi: s3c64xx: remove extra blank line
` [PATCH 04/21] spi: s3c64xx: remove unneeded (void *) casts in of_match_table
` [PATCH 05/21] spi: s3c64xx: explicitly include <linux/bits.h>
` [PATCH 06/21] spi: s3c64xx: remove else after return
` [PATCH 07/21] spi: s3c64xx: use bitfield access macros
` [PATCH 08/21] spi: s3c64xx: move error check up to avoid rechecking
` [PATCH 09/21] spi: s3c64xx: use full mask for {RX, TX}_FIFO_LVL
` [PATCH 10/21] spi: s3c64xx: move common code outside if else
` [PATCH 11/21] spi: s3c64xx: check return code of dmaengine_slave_config()
` [PATCH 12/21] spi: s3c64xx: propagate the dma_submit_error() error code
` [PATCH 13/21] spi: s3c64xx: rename prepare_dma() to s3c64xx_prepare_dma()
` [PATCH 14/21] spi: s3c64xx: return ETIMEDOUT for wait_for_completion_timeout()
` [PATCH 15/21] spi: s3c64xx: simplify s3c64xx_wait_for_pio()
` [PATCH 16/21] spi: s3c64xx: add missing blank line after declaration
` [PATCH 17/21] spi: s3c64xx: downgrade dev_warn to dev_dbg for optional dt props
` [PATCH 18/21] asm-generic/io.h: add iowrite{8,16}_32 accessors
` [PATCH 19/21] spi: s3c64xx: add support for google,gs101-spi
` [PATCH 20/21] spi: s3c64xx: make the SPI alias optional for newer SoCs
` [PATCH 21/21] MAINTAINERS: add Tudor Ambarus as R for the samsung SPI driver

[PATCH 0/9] Add exynos_pmu_update/read/write() APIs to exynos-pmu
 2024-01-25 13:19 UTC  (31+ messages)
` [PATCH 1/9] dt-bindings: watchdog: samsung-wdt: deprecate samsung,syscon-phandle
` [PATCH 2/9] soc: samsung: exynos-pmu: Add exynos_pmu_update/read/write APIs and SoC quirks
` [PATCH 3/9] watchdog: s3c2410_wdt: update to use new exynos_pmu_*() apis
` [PATCH 4/9] arm64: dts: fsd: remove deprecated samsung,syscon-phandle
` [PATCH 5/9] arm64: dts: exynosautov9: "
` [PATCH 6/9] arm64: dts: exynos850: "
` [PATCH 7/9] arm64: dts: exynos7: "
` [PATCH 8/9] ARM: dts: samsung: exynos4: "
` [PATCH 9/9] ARM: dts: exynos5250: "

[PATCH] arm/arm64: samsung: Enable W=1 on dtbs by default
 2024-01-25 11:31 UTC  (4+ messages)

[GIT PULL fixes] clk: samsung: fixes for v6.8
 2024-01-25  8:25 UTC 

[GIT PULL fixes] ARM: samsung: dts: fixes for v6.8
 2024-01-25  8:24 UTC 

[PATCH] dt-bindings: ufs: samsung,exynos-ufs: Add size constraints on "samsung,sysreg"
 2024-01-25  7:57 UTC  (2+ messages)

[PATCH v2 0/3] arm64: exynos: Enable SPI for Exynos850
 2024-01-25  1:38 UTC  (4+ messages)
` [PATCH v2 1/3] clk: samsung: exynos850: Propagate SPI IPCLK rate change
` [PATCH v2 2/3] arm64: dts: exynos: Add PDMA node for Exynos850
` [PATCH v2 3/3] arm64: dts: exynos: Add SPI nodes "

[PATCH v2 0/2] spi: samsung: Add Exynos850 support
 2024-01-25  1:35 UTC  (3+ messages)
` [PATCH v2 1/2] spi: dt-bindings: samsung: Add Exynos850 SPI
` [PATCH v2 2/2] spi: s3c64xx: Add Exynos850 support

[PATCH v4 0/2] Add helper function to get and enable all bulk clocks
 2024-01-24 10:38 UTC  (3+ messages)
    ` [PATCH v4 1/2] clk: Provide managed helper to get and enable "
    ` [PATCH v4 2/2] PCI: exynos: Adapt to clk_bulk_* APIs

[PATCH v3 0/2] Add helper function to get and enable all bulk clocks
 2024-01-24  8:43 UTC  (7+ messages)
  ` [PATCH v3 1/2] clk: Provide managed helper to get and enable "

[PATCH v4 0/8] GS101 Oriole: CMU_PERIC0 support and USI updates
 2024-01-23  9:54 UTC  (29+ messages)
` [PATCH v4 1/8] dt-bindings: clock: google,gs101-clock: add PERIC0 clock management unit
  ` (subset) "
` [PATCH v4 2/8] dt-bindings: i2c: exynos5: add google,gs101-hsi2c compatible
  ` (subset) "
` [PATCH v4 3/8] clk: samsung: gs101: add support for cmu_peric0
` [PATCH v4 4/8] arm64: dts: exynos: gs101: remove reg-io-width from serial
  ` (subset) "
` [PATCH v4 5/8] arm64: dts: exynos: gs101: enable cmu-peric0 clock controller
  ` (subset) "
` [PATCH v4 6/8] arm64: dts: exynos: gs101: update USI UART to use peric0 clocks
  ` (subset) "
` [PATCH v4 7/8] arm64: dts: exynos: gs101: define USI8 with I2C configuration
  ` (subset) "
` [PATCH v4 8/8] arm64: dts: exynos: gs101: enable eeprom on gs101-oriole
  ` (subset) "

[PATCH 1/2] dt-bindings: clock: Fix spelling mistake in 'tesla,fsd-clock.yaml'
 2024-01-23  9:54 UTC  (3+ messages)
  ` (subset) "

[PATCH] spi: s3c64xx: Extract FIFO depth calculation to a dedicated macro
 2024-01-22 20:44 UTC  (2+ messages)

[PATCH AUTOSEL 4.19 14/23] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
 2024-01-22 15:17 UTC 

[PATCH AUTOSEL 5.4 15/24] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
 2024-01-22 15:16 UTC 

[PATCH AUTOSEL 5.10 19/28] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
 2024-01-22 15:14 UTC 

[PATCH AUTOSEL 5.15 21/35] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
 2024-01-22 15:12 UTC 

[PATCH AUTOSEL 6.1 30/53] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
 2024-01-22 15:08 UTC 

[PATCH AUTOSEL 6.6 38/73] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
 2024-01-22 15:01 UTC 

[PATCH AUTOSEL 6.7 44/88] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
 2024-01-22 14:51 UTC 

[PATCH v5] clk: samsung: gs101: add support for cmu_peric0
 2024-01-22 12:20 UTC  (2+ messages)

[PATCH 0/3] Enable Multi Core Timer (MCT) for gs101
 2024-01-22 12:11 UTC  (11+ messages)
` [PATCH 1/3] dt-bindings: timer: exynos4210-mct: Add google,gs101-mct compatible
` [PATCH 2/3] clk: samsung: gs101: register cmu_misc clocks early
  ` (subset) "
` [PATCH 3/3] arm64: dts: exynos: gs101: define Multi Core Timer (MCT) node
  ` (subset) "

[PATCH 1/2] ARM: dts: exynos: add accelerometer and gyro to p4note
 2024-01-22 11:15 UTC  (2+ messages)

[PATCH v2 00/22] Improve IRQ wake capability reporting and update the cros_ec driver to use it
 2024-01-22 11:15 UTC  (5+ messages)
` [PATCH v2 06/22] ARM: dts: samsung: exynos5420: Enable cros-ec-spi as wake source
  ` (subset) "
` [PATCH v2 07/22] ARM: dts: samsung: exynos5800: "
  ` (subset) "

[PATCH v2] ARM: dts: exynos: disable polling in Odroid XU3-related devices
 2024-01-22 11:15 UTC  (2+ messages)

[PATCH v2 0/2] Fix panel polarity mixup in S6D7AA0 panel driver and Galaxy Tab 3 8.0 DTSI
 2024-01-22 11:15 UTC  (3+ messages)
` [PATCH v2 1/2] ARM: dts: exynos4212-tab3: add samsung,invert-vclk flag to fimd
  ` (subset) "

[PATCH] ARM: s5pv210: fix pm.c kernel-doc warning
 2024-01-22 10:44 UTC  (3+ messages)

[PATCH v2 0/3] GS101: rename cmu_misc clock-names
 2024-01-22 10:41 UTC  (2+ messages)

[PATCH v4 00/24] Improve IRQ wake capability reporting and update the cros_ec driver to use it
 2024-01-22  9:14 UTC  (2+ messages)

[GIT PULL] exynos-drm-fixes
 2024-01-22  7:24 UTC 


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).