From patchwork Mon Feb 25 03:49:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Haojian Zhuang X-Patchwork-Id: 2180041 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 12006DF230 for ; Mon, 25 Feb 2013 03:55:57 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1U9p6j-0003Ue-7e; Mon, 25 Feb 2013 03:52:05 +0000 Received: from mail-pb0-f54.google.com ([209.85.160.54]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1U9p5x-0003H8-Kk for linux-arm-kernel@lists.infradead.org; Mon, 25 Feb 2013 03:51:19 +0000 Received: by mail-pb0-f54.google.com with SMTP id rr4so1422436pbb.13 for ; Sun, 24 Feb 2013 19:51:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:x-gm-message-state; bh=/yjz6NmwEw0dwWxueLDecUPYyYZ0EL2z2OTdfOH1Tc0=; b=Qdl93VMBN+fre/lCoGM+aQjs7NlSdZ9HQc7JsFWAdVFIA8MUq0fzCnBu5koxmmTYSX vyeR+pcE3UKbzOAO28UK2UtwCDOsmWCSPoJ65ba+XKQpaY3LZ7fri/YhorjD1igk3tT1 5Z1vf32TxpdcN44U5AdPjabGt7eOKAPlaJ132NeITcSRrbty8YNHq0piZqW9FXTq5neW JaL7I5gEPCPjIVeZiyTp7aO+2HBxI5dSvflF+7PFXcy1sSuyhfRmsEhF6jOdWb4L9Kyp yBkZB3O8IPg+atEnG8AYyGnKkv7VHhLl25mrOWWkxzWf32dq6eCG2W/a0rHq+U/xCSz+ DQug== X-Received: by 10.66.122.4 with SMTP id lo4mr16568181pab.114.1361764275944; Sun, 24 Feb 2013 19:51:15 -0800 (PST) Received: from localhost.localdomain ([67.198.145.34]) by mx.google.com with ESMTPS id b9sm11188695pba.6.2013.02.24.19.51.11 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 24 Feb 2013 19:51:15 -0800 (PST) From: Haojian Zhuang To: grinberg@compulab.co.il, linus.walleij@linaro.org, linux@arm.linux.org.uk, marek.vasut@gmail.com, robert.jarzmik@free.fr, daniel@caiaq.de, linux-arm-kernel@lists.infradead.org, grant.likely@secretlab.ca, cxie4@marvell.com Subject: [PATCH v5 04/12] gpio: pxa: use platform data for gpio inverted Date: Mon, 25 Feb 2013 11:49:33 +0800 Message-Id: <1361764181-26647-5-git-send-email-haojian.zhuang@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1361764181-26647-1-git-send-email-haojian.zhuang@linaro.org> References: <1361764181-26647-1-git-send-email-haojian.zhuang@linaro.org> X-Gm-Message-State: ALoCoQnp5Gw3BsMwShnkhTjYU/ynRqHQxZfUe/TzvC0kpZM37mhIHhOTbF0ldemPHuRFFjysXERR X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130224_225117_885627_1C73845E X-CRM114-Status: GOOD ( 16.41 ) X-Spam-Score: 0.4 (/) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (0.4 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.160.54 listed in list.dnswl.org] 3.0 KHOP_BIG_TO_CC Sent to 10+ recipients instaed of Bcc or a list -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Haojian Zhuang , patches@linaro.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Avoid to judge whether gpio is inverted by identifying cpu in gpio driver. Move this into platform data of gpio driver. Signed-off-by: Haojian Zhuang --- arch/arm/mach-pxa/pxa25x.c | 3 +++ drivers/gpio/gpio-pxa.c | 28 ++++++++++++++++++---------- include/linux/gpio-pxa.h | 1 + 3 files changed, 22 insertions(+), 10 deletions(-) diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 3f5171e..9c9c224 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c @@ -340,6 +340,9 @@ void __init pxa25x_map_io(void) } static struct pxa_gpio_platform_data pxa25x_gpio_info __initdata = { +#ifdef CONFIG_CPU_PXA26x + .inverted = true, +#endif .gpio_set_wake = gpio_set_wake, }; diff --git a/drivers/gpio/gpio-pxa.c b/drivers/gpio/gpio-pxa.c index 9519ab9..735aa3e 100644 --- a/drivers/gpio/gpio-pxa.c +++ b/drivers/gpio/gpio-pxa.c @@ -71,6 +71,7 @@ static struct device_node *pxa_gpio_of_node; struct pxa_gpio_chip { struct gpio_chip gc; void __iomem *regbase; + bool inverted; char label[10]; unsigned long irq_mask; @@ -126,9 +127,9 @@ static inline int gpio_is_mmp_type(int type) /* GPIO86/87/88/89 on PXA26x have their direction bits in PXA_GPDR(2 inverted, * as well as their Alternate Function value being '1' for GPIO in GAFRx. */ -static inline int pxa_gpio_is_inverted(int gpio) +static inline int pxa_gpio_is_inverted(struct pxa_gpio_chip *chip, int gpio) { - if ((gpio_type == PXA26X_GPIO) && (gpio > 85)) + if ((chip->inverted) && (gpio > 85)) return 1; return 0; } @@ -139,14 +140,12 @@ static inline int pxa_gpio_is_inverted(int gpio) * is attributed as "occupied" here (I know this terminology isn't * accurate, you are welcome to propose a better one :-) */ -static inline int pxa_gpio_is_occupied(unsigned gpio) +static inline int pxa_gpio_is_occupied(struct pxa_gpio_chip *chip, unsigned gpio) { - struct pxa_gpio_chip *chip; void __iomem *base; unsigned long gafr = 0, gpdr = 0; int ret, af = 0, dir = 0; - chip = gpio_to_pxachip(gpio); base = gpio_chip_base(&chip->gc); gpdr = readl_relaxed(base + GPDR_OFFSET); @@ -158,7 +157,7 @@ static inline int pxa_gpio_is_occupied(unsigned gpio) af = (gafr >> ((gpio & 0xf) * 2)) & 0x3; dir = gpdr & GPIO_bit(gpio); - if (pxa_gpio_is_inverted(gpio)) + if (pxa_gpio_is_inverted(chip, gpio)) ret = (af != 1) || (dir == 0); else ret = (af != 0) || (dir != 0); @@ -183,13 +182,16 @@ int pxa_irq_to_gpio(int irq) static int pxa_gpio_direction_input(struct gpio_chip *gc, unsigned offset) { void __iomem *base = gpio_chip_base(gc); + struct pxa_gpio_chip *chip; uint32_t value, mask = 1 << offset; unsigned long flags; + chip = container_of(gc, struct pxa_gpio_chip, gc); + spin_lock_irqsave(&gpio_lock, flags); value = readl_relaxed(base + GPDR_OFFSET); - if (pxa_gpio_is_inverted(gc->base + offset)) + if (pxa_gpio_is_inverted(chip, gc->base + offset)) value |= mask; else value &= ~mask; @@ -203,15 +205,17 @@ static int pxa_gpio_direction_output(struct gpio_chip *gc, unsigned offset, int value) { void __iomem *base = gpio_chip_base(gc); + struct pxa_gpio_chip *chip; uint32_t tmp, mask = 1 << offset; unsigned long flags; + chip = container_of(gc, struct pxa_gpio_chip, gc); writel_relaxed(mask, base + (value ? GPSR_OFFSET : GPCR_OFFSET)); spin_lock_irqsave(&gpio_lock, flags); tmp = readl_relaxed(base + GPDR_OFFSET); - if (pxa_gpio_is_inverted(gc->base + offset)) + if (pxa_gpio_is_inverted(chip, gc->base + offset)) tmp &= ~mask; else tmp |= mask; @@ -322,7 +326,7 @@ static int pxa_gpio_irq_type(struct irq_data *d, unsigned int type) if ((c->irq_edge_rise | c->irq_edge_fall) & GPIO_bit(gpio)) return 0; - if (pxa_gpio_is_occupied(gpio)) + if (pxa_gpio_is_occupied(c, gpio)) return 0; type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; @@ -330,7 +334,7 @@ static int pxa_gpio_irq_type(struct irq_data *d, unsigned int type) gpdr = readl_relaxed(c->regbase + GPDR_OFFSET); - if (pxa_gpio_is_inverted(gpio)) + if (pxa_gpio_is_inverted(c, gpio)) writel_relaxed(gpdr | mask, c->regbase + GPDR_OFFSET); else writel_relaxed(gpdr & ~mask, c->regbase + GPDR_OFFSET); @@ -507,6 +511,8 @@ static int pxa_gpio_probe_dt(struct platform_device *pdev) if (!pdata) return -ENOMEM; pdata->ed_mask = of_property_read_bool(np, "marvell,gpio-ed-mask"); + /* It's only valid for PXA26x */ + pdata->inverted = of_property_read_bool(np, "marvell,gpio-inverted"); /* set the platform data */ pdev->dev.platform_data = pdata; gpio_type = (int)of_id->data; @@ -610,6 +616,8 @@ static int pxa_gpio_probe(struct platform_device *pdev) /* unmask GPIO edge detect for AP side */ if (info->ed_mask) writel_relaxed(~0, c->regbase + ED_MASK_OFFSET); + /* update for gpio inverted */ + c->inverted = info->inverted; } if (!use_of) { diff --git a/include/linux/gpio-pxa.h b/include/linux/gpio-pxa.h index bc5cae5..759e865 100644 --- a/include/linux/gpio-pxa.h +++ b/include/linux/gpio-pxa.h @@ -15,6 +15,7 @@ extern int pxa_irq_to_gpio(int irq); struct pxa_gpio_platform_data { bool ed_mask; /* true means that ed_mask reg is available */ + bool inverted; /* only valid for PXA26x */ int (*gpio_set_wake)(unsigned int gpio, unsigned int on); };