Received: by 2002:a05:6a10:f3d0:0:0:0:0 with SMTP id a16csp4305402pxv; Mon, 5 Jul 2021 20:13:47 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwnB5mWuf4CgVZHCKW+GSmwlBZfHD8pZnYHRgUB2re+QUyWXG3VvN1/7Wgd1cdXHbPEs7e4 X-Received: by 2002:a17:906:25cb:: with SMTP id n11mr16128410ejb.539.1625541226955; Mon, 05 Jul 2021 20:13:46 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1625541226; cv=none; d=google.com; s=arc-20160816; b=sJyg8S09FCie+54qeu+kbAYrjAGhopKG0nY+1FuADcBopei5T896vACEpg//FWCsMZ OOuTLuZNPuwAIHbepKEasJMfOQxOMWf94t8c6J0xzk9CPo272IyYSMl9XZdNM2NYOt/7 tDkSwXNxlpT8+wPCOMktOWKh5eA8ltImAF5C97mBFiF0nGkxlj9v9/JWwFUDdLvMTytS NLZp9W3+TjA0W9LbR2m2u9Xk8OWkL7t6Zm3D5eHJzyy37+tL7VM+u3Z7u9pEAKSKJEJO J+w/Lq2ukFYyycYzxjT3eIYB4NyFc5LyxlHvI7DMSC1qvAt2WavlyhasEYzTmQHl4gMI IvYg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=HI5I3O0WM4+H/VWpAobm8aTizmO7xWgtOZmHnlyjAP8=; b=L+dGScGrMILmPeWVv9l0Ais2yXWwHHFzlBtuZh+xd2bHsIFWN3dyHMRilU431lPZ66 phjayeX+5mHhQ13Equd21xg4w9zmR/T4goL7q7Ek5bVmWESh0VyvcBfsa9fQE1ovBQ62 YCGUEGxPRj2ystrBxhyALeQiq8J4NLsXxmlAWWWfbE18oyyZcf2o8tOnVKAN8cd8vpi7 GDq62SSEZEWXh01+J8S8WfUD38TgXtUiX5aBSGhDQGlcIVqYa+AVF7OKzkkoEl/bQtTy preNGkxX5lvzTjOJ7bOSQttr/pP6TvflwcFcjjndnPOMmo4B6YrK1PWRVtDGo2Wtp2Kz c2bQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id 23si14242554ejg.238.2021.07.05.20.13.24; Mon, 05 Jul 2021 20:13:46 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230026AbhGFDMX (ORCPT + 99 others); Mon, 5 Jul 2021 23:12:23 -0400 Received: from mail.kernel.org ([198.145.29.99]:39780 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229941AbhGFDMX (ORCPT ); Mon, 5 Jul 2021 23:12:23 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 2B58F6197F; Tue, 6 Jul 2021 03:09:42 +0000 (UTC) From: Huacai Chen To: Thomas Gleixner , Marc Zyngier Cc: linux-kernel@vger.kernel.org, Xuefeng Li , Huacai Chen , Jiaxun Yang , Huacai Chen Subject: [PATCH 3/9] irqchip/loongson-pch-pic: Add ACPI init support Date: Tue, 6 Jul 2021 11:08:58 +0800 Message-Id: <20210706030904.1411775-4-chenhuacai@loongson.cn> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210706030904.1411775-1-chenhuacai@loongson.cn> References: <20210706030904.1411775-1-chenhuacai@loongson.cn> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We are preparing to add new Loongson (based on LoongArch, not MIPS) support. LoongArch use ACPI other than DT as its boot protocol, so add ACPI init support. Signed-off-by: Huacai Chen --- drivers/irqchip/irq-loongson-pch-pic.c | 120 ++++++++++++++++++++++++- 1 file changed, 119 insertions(+), 1 deletion(-) diff --git a/drivers/irqchip/irq-loongson-pch-pic.c b/drivers/irqchip/irq-loongson-pch-pic.c index a4eb8a2181c7..62382611995b 100644 --- a/drivers/irqchip/irq-loongson-pch-pic.c +++ b/drivers/irqchip/irq-loongson-pch-pic.c @@ -1,6 +1,8 @@ // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2020, Jiaxun Yang + * Jianmin Lv + * Huacai Chen * Loongson PCH PIC support */ @@ -15,6 +17,7 @@ #include #include #include +#include /* Registers */ #define PCH_PIC_MASK 0x20 @@ -32,14 +35,23 @@ #define PIC_COUNT (PIC_COUNT_PER_REG * PIC_REG_COUNT) #define PIC_REG_IDX(irq_id) ((irq_id) / PIC_COUNT_PER_REG) #define PIC_REG_BIT(irq_id) ((irq_id) % PIC_COUNT_PER_REG) +#define PCH_PIC_SIZE 0x400 + +static int nr_pch_pics; struct pch_pic { void __iomem *base; struct irq_domain *pic_domain; + struct fwnode_handle *domain_handle; u32 ht_vec_base; raw_spinlock_t pic_lock; + u32 saved_vec_en[PIC_REG_COUNT]; + u32 saved_vec_pol[PIC_REG_COUNT]; + u32 saved_vec_edge[PIC_REG_COUNT]; }; +struct pch_pic *pch_pic_priv[4]; + static void pch_pic_bitset(struct pch_pic *priv, int offset, int bit) { u32 reg; @@ -137,6 +149,7 @@ static struct irq_chip pch_pic_irq_chip = { .irq_ack = pch_pic_ack_irq, .irq_set_affinity = irq_chip_set_affinity_parent, .irq_set_type = pch_pic_set_type, + .flags = IRQCHIP_SKIP_SET_WAKE, }; static int pch_pic_alloc(struct irq_domain *domain, unsigned int virq, @@ -180,7 +193,7 @@ static void pch_pic_reset(struct pch_pic *priv) int i; for (i = 0; i < PIC_COUNT; i++) { - /* Write vectored ID */ + /* Write vector ID */ writeb(priv->ht_vec_base + i, priv->base + PCH_INT_HTVEC(i)); /* Hardcode route to HT0 Lo */ writeb(1, priv->base + PCH_INT_ROUTE(i)); @@ -198,6 +211,48 @@ static void pch_pic_reset(struct pch_pic *priv) } } +static int pch_pic_suspend(void) +{ + int i, j; + + for (i = 0; i < nr_pch_pics; i++) { + for (j = 0; j < PIC_REG_COUNT; j++) { + pch_pic_priv[i]->saved_vec_pol[j] = + readl(pch_pic_priv[i]->base + PCH_PIC_POL + 4 * j); + pch_pic_priv[i]->saved_vec_edge[j] = + readl(pch_pic_priv[i]->base + PCH_PIC_EDGE + 4 * j); + pch_pic_priv[i]->saved_vec_en[j] = + readl(pch_pic_priv[i]->base + PCH_PIC_MASK + 4 * j); + } + } + + return 0; +} + +static void pch_pic_resume(void) +{ + int i, j; + + for (i = 0; i < nr_pch_pics; i++) { + pch_pic_reset(pch_pic_priv[i]); + for (j = 0; j < PIC_REG_COUNT; j++) { + writel(pch_pic_priv[i]->saved_vec_pol[j], + pch_pic_priv[i]->base + PCH_PIC_POL + 4 * j); + writel(pch_pic_priv[i]->saved_vec_edge[j], + pch_pic_priv[i]->base + PCH_PIC_EDGE + 4 * j); + writel(pch_pic_priv[i]->saved_vec_en[j], + pch_pic_priv[i]->base + PCH_PIC_MASK + 4 * j); + } + } +} + +static struct syscore_ops pch_pic_syscore_ops = { + .suspend = pch_pic_suspend, + .resume = pch_pic_resume, +}; + +#ifdef CONFIG_OF + static int pch_pic_of_init(struct device_node *node, struct device_node *parent) { @@ -242,6 +297,9 @@ static int pch_pic_of_init(struct device_node *node, } pch_pic_reset(priv); + pch_pic_priv[0] = priv; + + register_syscore_ops(&pch_pic_syscore_ops); return 0; @@ -254,3 +312,63 @@ static int pch_pic_of_init(struct device_node *node, } IRQCHIP_DECLARE(pch_pic, "loongson,pch-pic-1.0", pch_pic_of_init); + +#endif + +#ifdef CONFIG_ACPI + +struct fwnode_handle *pch_pic_acpi_init(struct fwnode_handle *parent, + struct acpi_madt_bio_pic *acpi_pchpic) +{ + int count; + struct pch_pic *priv; + struct irq_domain *parent_domain; + + priv = kzalloc(sizeof(*priv), GFP_KERNEL); + if (!priv) + return NULL; + + raw_spin_lock_init(&priv->pic_lock); + priv->base = ioremap(acpi_pchpic->address, acpi_pchpic->size); + if (!priv->base) + goto free_priv; + + priv->domain_handle = irq_domain_alloc_fwnode(priv->base); + if (!priv->domain_handle) { + pr_err("Unable to allocate domain handle\n"); + goto iounmap_base; + } + + priv->ht_vec_base = acpi_pchpic->gsi_base; + count = ((readq(priv->base) >> 48) & 0xff) + 1; + parent_domain = irq_find_matching_fwnode(parent, DOMAIN_BUS_ANY); + if (!parent_domain) { + pr_err("Failed to find the parent domain\n"); + goto iounmap_base; + } + + priv->pic_domain = irq_domain_create_hierarchy(parent_domain, 0, + count, priv->domain_handle, + &pch_pic_domain_ops, priv); + + if (!priv->pic_domain) { + pr_err("Failed to create IRQ domain\n"); + goto iounmap_base; + } + + pch_pic_reset(priv); + pch_pic_priv[nr_pch_pics++] = priv; + + register_syscore_ops(&pch_pic_syscore_ops); + + return priv->domain_handle; + +iounmap_base: + iounmap(priv->base); +free_priv: + kfree(priv); + + return NULL; +} + +#endif -- 2.27.0