mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Fu Hao <fuhao@open-hieco.net>
To: puwen@hygon.cn, tglx@kernel.org, mingo@redhat.com, bp@alien8.de,
	dave.hansen@linux.intel.com, x86@kernel.org,
	peterz@infradead.org, acme@kernel.org, joro@8bytes.org,
	will@kernel.org, suravee.suthikulpanit@amd.com,
	robin.murphy@arm.com, bhelgaas@google.com, perex@perex.cz,
	tiwai@suse.com, namhyung@kernel.org,
	alexander.shishkin@linux.intel.com, jolsa@kernel.org,
	irogers@google.com, james.clark@linaro.org, hpa@zytor.com
Cc: linux-kernel@vger.kernel.org, Fu Hao <fuhao@open-hieco.net>
Subject: [PATCH 0/8] Add support for Hygon Family 18h model 4h~8h processors
Date: Fri, 27 Mar 2026 16:06:34 +0800	[thread overview]
Message-ID: <cover.1774595153.git.fuhao@open-hieco.net> (raw)

This patch series introduce support for the new-generation Hygon
model 4h~8h processors, addressing five key areas:

1. CPU Topology Updates
The new processor introduces a revised CPU topology hierarchy
compared to previous generations. This patch updates the kernel's
topology detection logic to correctly identify core/socket
relationships and cache sharing patterns.

2. L3 Performance Monitoring Updates
The L3 perf registers of model 6h differ from those of the
previous processor.

3. Microcode loading
Add microcode loading support for Hygon processor.

4. Audio Controller Driver
Add initial support for the integrated HD-Audio controller.

5. New SB IOAPIC information support
The southbridge IOAPIC of Hygon's new-generation processors is
located at 00:0b.0.

Fu Hao (8):
  x86/cpu/hygon: Adjust the die_id and logical_die_id for Hygon model
    4h~8h
  x86/cpu: Get LLC ID for Hygon family 18h model 4h
  x86/cpu/hygon: Remove Spectral Chicken for Hygon processors
  perf/x86/uncore: Add L3 PMU support for Hygon family 18h model 6h
  x86/microcode/hygon: Add microcode loading support for Hygon
    processors
  ALSA: hda: Add support for Hygon family 18h model 5h HD-Audio
  ALSA: hda: Fix single byte writing issue for Hygon family 18h model 5h
  iommu/hygon: Add support for Hygon family 18h model 4h IOAPIC

 arch/x86/Kconfig                         |  2 +-
 arch/x86/events/amd/uncore.c             | 48 +++++++++++++++++-
 arch/x86/include/asm/perf_event.h        |  8 +++
 arch/x86/kernel/cpu/cacheinfo.c          | 22 +++++++--
 arch/x86/kernel/cpu/hygon.c              | 21 +++++---
 arch/x86/kernel/cpu/microcode/amd.c      | 63 ++++++++++++++++++------
 arch/x86/kernel/cpu/microcode/core.c     | 11 +++++
 arch/x86/kernel/cpu/microcode/internal.h | 12 +++++
 drivers/iommu/amd/init.c                 | 10 +++-
 include/linux/pci_ids.h                  |  1 +
 include/sound/hdaudio.h                  |  1 +
 sound/hda/controllers/intel.c            |  9 ++++
 sound/hda/core/controller.c              | 10 +++-
 sound/hda/core/stream.c                  | 42 ++++++++++++----
 14 files changed, 220 insertions(+), 40 deletions(-)

-- 
2.34.1


             reply	other threads:[~2026-03-27  8:07 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-27  8:06 Fu Hao [this message]
2026-03-27  8:07 ` [PATCH 1/8] x86/cpu/hygon: Adjust the die_id and logical_die_id for Hygon model 4h~8h Fu Hao
2026-03-28 13:34   ` Borislav Petkov
2026-03-30  2:59     ` Fu Hao
2026-06-03  2:17       ` Borislav Petkov
2026-06-05  6:05         ` Fu Hao
2026-03-27  8:08 ` [PATCH 2/8] x86/cpu: Get LLC ID for Hygon family 18h model 4h Fu Hao
2026-03-27  8:09 ` [PATCH 3/8] x86/cpu/hygon: Remove Spectral Chicken for Hygon processors Fu Hao
2026-03-27  8:09 ` [PATCH 4/8] perf/x86/uncore: Add L3 PMU support for Hygon family 18h model 6h Fu Hao
2026-03-27  8:10 ` [PATCH 5/8] x86/microcode/hygon: Add microcode loading support for Hygon processors Fu Hao
2026-03-27  8:13   ` Borislav Petkov
2026-03-27  8:37     ` Fu Hao
2026-03-27  8:10 ` [PATCH 6/8] ALSA: hda: Add support for Hygon family 18h model 5h HD-Audio Fu Hao
2026-03-27  8:11 ` [PATCH 7/8] ALSA: hda: Fix single byte writing issue for Hygon family 18h model 5h Fu Hao
2026-03-27 12:11   ` Takashi Iwai
2026-03-27 12:55     ` Fu Hao
2026-03-27 13:02   ` David Laight
2026-03-28  2:41     ` Fu Hao
2026-03-27  8:11 ` [PATCH 8/8] iommu/hygon: Add support for Hygon family 18h model 4h IOAPIC Fu Hao

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=cover.1774595153.git.fuhao@open-hieco.net \
    --to=fuhao@open-hieco.net \
    --cc=acme@kernel.org \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=bhelgaas@google.com \
    --cc=bp@alien8.de \
    --cc=dave.hansen@linux.intel.com \
    --cc=hpa@zytor.com \
    --cc=irogers@google.com \
    --cc=james.clark@linaro.org \
    --cc=jolsa@kernel.org \
    --cc=joro@8bytes.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=perex@perex.cz \
    --cc=peterz@infradead.org \
    --cc=puwen@hygon.cn \
    --cc=robin.murphy@arm.com \
    --cc=suravee.suthikulpanit@amd.com \
    --cc=tglx@kernel.org \
    --cc=tiwai@suse.com \
    --cc=will@kernel.org \
    --cc=x86@kernel.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