From: Tianyang Zhang <zhangtianyang@loongson.cn>
To: Huacai Chen <chenhuacai@kernel.org>
Cc: kernel@xen0n.name, corbet@lwn.net, alexs@kernel.org,
si.yanteng@linux.dev, tglx@linutronix.de,
jiaxun.yang@flygoat.com, peterz@infradead.org,
wangliupu@loongson.cn, lvjianmin@loongson.cn,
maobibo@loongson.cn, siyanteng@cqsoftware.com.cn,
gaosong@loongson.cn, yangtiezhu@loongson.cn,
loongarch@lists.linux.dev, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org,
Super User <root@localhost.localdomain>
Subject: Re: [PATCH v4 0/2] Loongarch irq-redirect supprot
Date: Tue, 24 Jun 2025 14:34:45 +0800 [thread overview]
Message-ID: <6d1eba98-e5ae-4f8e-cddc-b6dbdf20f721@loongson.cn> (raw)
In-Reply-To: <CAAhV-H5XB7sVf0UoUmXHDeTXA8tncJhV2LexLgc-Z1Hebsijtw@mail.gmail.com>
Hi, Huacai
在 2025/6/10 下午7:54, Huacai Chen 写道:
> Hi, Tianyang,
>
> Have you received my comments in V3?
> https://lore.kernel.org/loongarch/20250523101833.17940-1-zhangtianyang@loongson.cn/T/#m2883f379ce7eb663f3f3eb4736bf9b071c7fd8ab
After a few days of effort, I did not let that email reappear in my
mailbox... so I am replying to the above email here
* Re: [PATCH v3 2/2] irq/irq-loongarch-ir:Add Redirect irqchip support
2025-05-23 10:18 ` [PATCH v3 2/2] irq/irq-loongarch-ir:Add Redirect
irqchip support Tianyang Zhang
@ 2025-05-24 14:12 ` Huacai Chen
2025-05-25 9:06 ` Thomas Gleixner
1 sibling, 0 replies; 7+ messages in thread
From: Huacai Chen @ 2025-05-24 14:12 UTC (permalink / raw)
To: Tianyang Zhang
Cc: kernel, corbet, alexs, si.yanteng, tglx, jiaxun.yang, peterz,
wangliupu, lvjianmin, maobibo, siyanteng, gaosong, yangtiezhu,
loongarch, linux-doc, linux-kernel
>> +
>> +#define REDIRECT_REG_BASE(reg, node) \
>> + (UNCACHE_BASE | redirect_reg_base | (u64)(node) <<
NODE_ADDRSPACE_SHIFT | (reg))
> IO_BASE is a little better than UNCACHE_BASE.
yes, it is batter, thanks
>> +#define redirect_reg_queue_head(node)
REDIRECT_REG_BASE(LOONGARCH_IOCSR_REDIRECT_CQH, (node))
>> +#define redirect_reg_queue_tail(node)
REDIRECT_REG_BASE(LOONGARCH_IOCSR_REDIRECT_CQT, (node))
>> +#define read_queue_head(node) (*((u32
*)(redirect_reg_queue_head(node))))
>> +#define read_queue_tail(node) (*((u32
*)(redirect_reg_queue_tail(node))))
>> +#define write_queue_tail(node, val) (*((u32
*)(redirect_reg_queue_tail(node))) = (val))
>You can use readl() and writel() directly, then you can remove the
memory barrier around write_queue_tail().
OK , It is realy a good idea.thanks
>> +static void irde_invlid_entry_node(struct redirect_item *item)
> s/irde_invlid_entry_node/irde_invalid_entry_node/g
OK , thanks
>> + avecintc_sync(adata);
>> +
>> + return IRQ_SET_MASK_OK;
>> +}
> Have you tried to build with no SMP? This function (and maybe more)
should be guarded by CONFIG_SMP.
I did it at the beginning... Okay, I will supplement this test in the
current version
>> +static int __init redirect_reg_base_init(void)
>> +{
>> + acpi_status status;
>> + uint64_t addr = 0;
>> +
>> + if (acpi_disabled)
>> + return 0;
>> +
>> + status = acpi_evaluate_integer(NULL, "\\_SB.NO00", NULL, &addr);
>> + if (ACPI_FAILURE(status) || !addr)
>> + pr_info("redirect_iocsr_base used default
0x1fe00000\n");
>> + else
>> + redirect_reg_base = addr;
>> +
>> + return 0;
>> +}
>> +subsys_initcall_sync(redirect_reg_base_init);
>Can this function be put at the end of redirect_acpi_init()? It is too
>late in an initcall() function because the irqchip drivers begin to
>work before that.
Ok I got it , thanks
Tianyang
next prev parent reply other threads:[~2025-06-24 6:35 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-10 11:42 Tianyang Zhang
2025-06-10 11:42 ` [PATCH v4 1/2] Docs/LoongArch: Add Advanced Extended-Redirect IRQ model description Tianyang Zhang
2025-06-10 11:42 ` [PATCH v4 2/2] irq/irq-loongarch-ir:Add Redirect irqchip support Tianyang Zhang
2025-06-13 15:20 ` Thomas Gleixner
2025-06-23 2:45 ` Tianyang Zhang
2025-06-23 8:27 ` Thomas Gleixner
2025-06-23 9:33 ` Tianyang Zhang
2025-06-23 20:05 ` Thomas Gleixner
2025-06-24 1:39 ` Tianyang Zhang
2025-06-10 11:54 ` [PATCH v4 0/2] Loongarch irq-redirect supprot Huacai Chen
2025-06-10 12:07 ` Tianyang Zhang
2025-06-24 6:34 ` Tianyang Zhang [this message]
2025-06-13 14:02 ` Thomas Gleixner
2025-06-23 1:13 ` Tianyang Zhang
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=6d1eba98-e5ae-4f8e-cddc-b6dbdf20f721@loongson.cn \
--to=zhangtianyang@loongson.cn \
--cc=alexs@kernel.org \
--cc=chenhuacai@kernel.org \
--cc=corbet@lwn.net \
--cc=gaosong@loongson.cn \
--cc=jiaxun.yang@flygoat.com \
--cc=kernel@xen0n.name \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=loongarch@lists.linux.dev \
--cc=lvjianmin@loongson.cn \
--cc=maobibo@loongson.cn \
--cc=peterz@infradead.org \
--cc=root@localhost.localdomain \
--cc=si.yanteng@linux.dev \
--cc=siyanteng@cqsoftware.com.cn \
--cc=tglx@linutronix.de \
--cc=wangliupu@loongson.cn \
--cc=yangtiezhu@loongson.cn \
/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
all inboxes | Powered by JetHome®