linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: kmpark@infradead.org (Kyungmin Park)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 1/2] ARM: S5PV210: Add S5PV210 GPIO support
Date: Tue, 4 May 2010 12:18:32 +0900	[thread overview]
Message-ID: <t2n9c9fda241005032018odc1eb6beia07c6252f25ded2b@mail.gmail.com> (raw)
In-Reply-To: <1272940641-31220-1-git-send-email-kgene.kim@samsung.com>

Hi,

On Tue, May 4, 2010 at 11:37 AM, Kukjin Kim <kgene.kim@samsung.com> wrote:
> This patch adds GPIOlib support for S5PV210.
>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> ---
> ?arch/arm/mach-s5pv210/Makefile ? ? ? ? ? ? ? ? | ? ?2 +-
> ?arch/arm/mach-s5pv210/gpio.c ? ? ? ? ? ? ? ? ? | ?495 ++++++++++++++++++++++++
> ?arch/arm/mach-s5pv210/include/mach/gpio.h ? ? ?| ? 97 +++++-
> ?arch/arm/mach-s5pv210/include/mach/regs-gpio.h | ? 77 ++++
> ?4 files changed, 667 insertions(+), 4 deletions(-)
> ?create mode 100644 arch/arm/mach-s5pv210/gpio.c
> ?create mode 100644 arch/arm/mach-s5pv210/include/mach/regs-gpio.h
>
> diff --git a/arch/arm/mach-s5pv210/Makefile b/arch/arm/mach-s5pv210/Makefile
> index 7469d10..cb959ea 100644
> --- a/arch/arm/mach-s5pv210/Makefile
> +++ b/arch/arm/mach-s5pv210/Makefile
> @@ -12,7 +12,7 @@ obj- ? ? ? ? ? ? ? ? ? ? ? ? ?:=
>
> ?# Core support for S5PV210 system
>
> -obj-$(CONFIG_CPU_S5PV210) ? ? ?+= cpu.o init.o clock.o
> +obj-$(CONFIG_CPU_S5PV210) ? ? ?+= cpu.o init.o clock.o gpio.o
>
> ?# machine support
>
> diff --git a/arch/arm/mach-s5pv210/gpio.c b/arch/arm/mach-s5pv210/gpio.c
> new file mode 100644
> index 0000000..88f4802
> --- /dev/null
> +++ b/arch/arm/mach-s5pv210/gpio.c
> @@ -0,0 +1,495 @@
> +/* linux/arch/arm/mach-s5pv210/gpio.c
> + *
> + * Copyright (c) 2010 Samsung Electronics Co., Ltd.
> + * ? ? ? ? ? ? http://www.samsung.com/
> + *
> + * S5PV210 - GPIOlib support
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/irq.h>
> +#include <linux/io.h>
> +#include <mach/map.h>
> +#include <mach/gpio.h>
> +#include <mach/regs-gpio.h>
> +#include <plat/gpio-core.h>
> +#include <plat/gpio-cfg.h>
> +#include <plat/gpio-cfg-helpers.h>
> +
> +static struct s3c_gpio_cfg gpio_cfg = {
> + ? ? ? .cfg_eint ? ? ? = 0xf,

What's the purpose of 'cfg_eint'? As I know no place to use it.

> + ? ? ? .set_config ? ? = s3c_gpio_setcfg_s3c64xx_4bit,
> + ? ? ? .set_pull ? ? ? = s3c_gpio_setpull_updown,
> + ? ? ? .get_pull ? ? ? = s3c_gpio_getpull_updown,
> +};
> +
> +static struct s3c_gpio_cfg gpio_cfg_noint = {
> + ? ? ? .set_config ? ? = s3c_gpio_setcfg_s3c64xx_4bit,
> + ? ? ? .set_pull ? ? ? = s3c_gpio_setpull_updown,
> + ? ? ? .get_pull ? ? ? = s3c_gpio_getpull_updown,
> +};
> +
> +static struct s3c_gpio_chip s5pv210_gpio_4bit[] = {
> + ? ? ? {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPA0_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPA0(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_A0_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPA0",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPA1_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPA1(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_A1_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPA1",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPB_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPB(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_B_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPB",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPC0_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPC0(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_C0_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPC0",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPC1_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPC1(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_C1_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPC1",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPD0_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPD0(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_D0_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPD0",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPD1_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPD1(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_D1_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPD1",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPE0_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPE0(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_E0_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPE0",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPE1_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPE1(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_E1_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPE1",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPF0_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPF0(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_F0_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPF0",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPF1_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPF1(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_F1_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPF1",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPF2_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPF2(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_F2_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPF2",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPF3_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPF3(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_F3_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPF3",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPG0_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPG0(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_G0_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPG0",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPG1_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPG1(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_G1_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPG1",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPG2_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPG2(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_G2_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPG2",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPG3_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPG3(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_G3_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPG3",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPH0_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPH0(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_H0_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPH0",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPH1_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPH1(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_H1_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPH1",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPH2_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPH2(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_H2_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPH2",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPH3_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPH3(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_H3_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPH3",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPI_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPI(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_I_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPI",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPJ0_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPJ0(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_J0_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPJ0",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPJ1_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPJ1(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_J1_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPJ1",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPJ2_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPJ2(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_J2_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPJ2",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPJ3_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPJ3(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_J3_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPJ3",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_GPJ4_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_GPJ4(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_J4_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "GPJ4",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_MP01_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_MP01(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_MP01_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "MP01",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_MP02_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_MP02(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_MP02_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "MP02",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_MP03_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_MP03(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_MP03_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "MP03",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_MP04_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_MP04(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_MP04_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "MP04",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_MP05_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_MP05(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_MP05_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "MP05",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {
> + ? ? ? ? ? ? ? .base ? = S5PV210_MP06_BASE,
> + ? ? ? ? ? ? ? .config = &gpio_cfg_noint,
> + ? ? ? ? ? ? ? .chip ? = {
> + ? ? ? ? ? ? ? ? ? ? ? .base ? = S5PV210_MP06(0),
> + ? ? ? ? ? ? ? ? ? ? ? .ngpio ?= S5PV210_GPIO_MP06_NR,
> + ? ? ? ? ? ? ? ? ? ? ? .label ?= "MP06",
> + ? ? ? ? ? ? ? },
> + ? ? ? }, {

  reply	other threads:[~2010-05-04  3:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-04  2:37 [PATCH v2 1/2] ARM: S5PV210: Add S5PV210 GPIO support Kukjin Kim
2010-05-04  3:18 ` Kyungmin Park [this message]
2010-05-04  3:51 ` Ben Dooks

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=t2n9c9fda241005032018odc1eb6beia07c6252f25ded2b@mail.gmail.com \
    --to=kmpark@infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).