All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] support gce on mt8183 platform
@ 2019-01-29  7:31 ` Bibby Hsieh
  0 siblings, 0 replies; 65+ messages in thread
From: Bibby Hsieh @ 2019-01-29  7:31 UTC (permalink / raw)
  To: Jassi Brar, Matthias Brugger, Rob Herring, CK HU
  Cc: Daniel Kurtz, Sascha Hauer, devicetree, linux-kernel,
	linux-arm-kernel, linux-mediatek, srv_heupstream, Sascha Hauer,
	Philipp Zabel, Nicolas Boichat, Bibby Hsieh, YT Shen,
	Daoyuan Huang, Jiaguang Zhang, Dennis-YC Hsieh, Houlong Wei,
	ginny.chen, kendrick.hsu, Frederic Chen

MTK will support gce function on mt8183 platform.
	soc: mediatek: add mt8183 compatible name
	dt-binding: gce: add gce header file for mt8183

Besides above patches, we refine gce driver on those patches.
	soc: mediatek: move the CMDQ_IRQ_MASK into cmdq driver data
	soc: mediatek: clear the event in cmdq initial flow

In ordet to enhance the convenience of gce usage, we add new helper
functions and refine the method of instruction combining. 
	soc: mediatek: add subsys-base address transform function
	soc: mediatek: add register device function
	soc: mediatek: add cmdq_dev_get_event function
	soc: mediatek: add packet encoder function
	soc: mediatek: change the argument of write and write_mask API
	soc: mediatek: add polling function

Bibby Hsieh (10):
  soc: mediatek: add mt8183 compatible name
  dt-binding: gce: add gce header file for mt8183
  soc: mediatek: move the CMDQ_IRQ_MASK into cmdq driver data
  soc: mediatek: clear the event in cmdq initial flow
  soc: mediatek: add subsys-base address transform function
  soc: mediatek: add register device function
  soc: mediatek: add cmdq_dev_get_event function
  soc: mediatek: add packet encoder function
  soc: mediatek: change the argument of write and write_mask API
  soc: mediatek: add polling function

 .../devicetree/bindings/mailbox/mtk-gce.txt        |   6 +-
 drivers/mailbox/mtk-cmdq-mailbox.c                 |  18 +-
 drivers/soc/mediatek/mtk-cmdq-helper.c             | 212 +++++++++++++++++----
 include/dt-bindings/gce/mt8183-gce.h               | 177 +++++++++++++++++
 include/linux/mailbox/mtk-cmdq-mailbox.h           |   5 +
 include/linux/soc/mediatek/mtk-cmdq.h              |  52 +++--
 6 files changed, 412 insertions(+), 58 deletions(-)
 create mode 100644 include/dt-bindings/gce/mt8183-gce.h

-- 
1.9.1


^ permalink raw reply	[flat|nested] 65+ messages in thread

end of thread, other threads:[~2019-02-25 14:39 UTC | newest]

Thread overview: 65+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-29  7:31 [PATCH 00/10] support gce on mt8183 platform Bibby Hsieh
2019-01-29  7:31 ` Bibby Hsieh
2019-01-29  7:31 ` Bibby Hsieh
2019-01-29  7:31 ` [PATCH 01/10] soc: mediatek: add mt8183 compatible name Bibby Hsieh
2019-01-29  7:31   ` Bibby Hsieh
2019-01-29  7:31   ` Bibby Hsieh
2019-01-29  8:51   ` CK Hu
2019-01-29  8:51     ` CK Hu
2019-01-29  8:51     ` CK Hu
2019-02-01  2:04   ` CK Hu
2019-02-01  2:04     ` CK Hu
2019-02-01  2:04     ` CK Hu
2019-01-29  7:31 ` [PATCH 02/10] dt-binding: gce: add gce header file for mt8183 Bibby Hsieh
2019-01-29  7:31   ` Bibby Hsieh
2019-01-29  7:31   ` Bibby Hsieh
2019-02-25 14:39   ` Rob Herring
2019-02-25 14:39     ` Rob Herring
2019-02-25 14:39     ` Rob Herring
2019-01-29  7:32 ` [PATCH 03/10] soc: mediatek: move the CMDQ_IRQ_MASK into cmdq driver data Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  9:22   ` CK Hu
2019-01-29  9:22     ` CK Hu
2019-01-29  9:22     ` CK Hu
2019-01-30  5:59   ` Pi-Hsun Shih
2019-01-30  5:59     ` Pi-Hsun Shih
2019-01-29  7:32 ` [PATCH 04/10] soc: mediatek: clear the event in cmdq initial flow Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  9:29   ` CK Hu
2019-01-29  9:29     ` CK Hu
2019-01-29  9:29     ` CK Hu
2019-01-29  7:32 ` [PATCH 05/10] soc: mediatek: add subsys-base address transform function Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32 ` [PATCH 06/10] soc: mediatek: add register device function Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-30  6:00   ` Pi-Hsun Shih
2019-01-30  6:00     ` Pi-Hsun Shih
2019-02-01  1:31   ` CK Hu
2019-02-01  1:31     ` CK Hu
2019-02-01  1:31     ` CK Hu
2019-01-29  7:32 ` [PATCH 07/10] soc: mediatek: add cmdq_dev_get_event function Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29 10:59   ` CK Hu
2019-01-29 10:59     ` CK Hu
2019-01-29 10:59     ` CK Hu
2019-01-30  6:00   ` Pi-Hsun Shih
2019-01-30  6:00     ` Pi-Hsun Shih
2019-01-29  7:32 ` [PATCH 08/10] soc: mediatek: add packet encoder function Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-30  6:01   ` Pi-Hsun Shih
2019-01-30  6:01     ` Pi-Hsun Shih
2019-01-29  7:32 ` [PATCH 09/10] soc: mediatek: change the argument of write and write_mask API Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29 11:13   ` CK Hu
2019-01-29 11:13     ` CK Hu
2019-01-29 11:13     ` CK Hu
2019-01-29  7:32 ` [PATCH 10/10] soc: mediatek: add polling function Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh
2019-01-29  7:32   ` Bibby Hsieh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.