Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.15 19 lines 466 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2024 Intel Corporation 4 */ 5#ifndef _XE_PMT_H_ 6#define _XE_PMT_H_ 7 8#define SOC_BASE 0x280000 9 10#define BMG_PMT_BASE_OFFSET 0xDB000 11#define BMG_DISCOVERY_OFFSET (SOC_BASE + BMG_PMT_BASE_OFFSET) 12 13#define BMG_TELEMETRY_BASE_OFFSET 0xE0000 14#define BMG_TELEMETRY_OFFSET (SOC_BASE + BMG_TELEMETRY_BASE_OFFSET) 15 16#define SG_REMAP_INDEX1 XE_REG(SOC_BASE + 0x08) 17#define SG_REMAP_BITS REG_GENMASK(31, 24) 18 19#endif