18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * SPU core / file system interface and HW structures
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
68c2ecf20Sopenharmony_ci *
78c2ecf20Sopenharmony_ci * Author: Arnd Bergmann <arndb@de.ibm.com>
88c2ecf20Sopenharmony_ci */
98c2ecf20Sopenharmony_ci
108c2ecf20Sopenharmony_ci#ifndef _SPU_H
118c2ecf20Sopenharmony_ci#define _SPU_H
128c2ecf20Sopenharmony_ci#ifdef __KERNEL__
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci#include <linux/workqueue.h>
158c2ecf20Sopenharmony_ci#include <linux/device.h>
168c2ecf20Sopenharmony_ci#include <linux/mutex.h>
178c2ecf20Sopenharmony_ci#include <asm/reg.h>
188c2ecf20Sopenharmony_ci#include <asm/copro.h>
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_ci#define LS_SIZE (256 * 1024)
218c2ecf20Sopenharmony_ci#define LS_ADDR_MASK (LS_SIZE - 1)
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci#define MFC_PUT_CMD             0x20
248c2ecf20Sopenharmony_ci#define MFC_PUTS_CMD            0x28
258c2ecf20Sopenharmony_ci#define MFC_PUTR_CMD            0x30
268c2ecf20Sopenharmony_ci#define MFC_PUTF_CMD            0x22
278c2ecf20Sopenharmony_ci#define MFC_PUTB_CMD            0x21
288c2ecf20Sopenharmony_ci#define MFC_PUTFS_CMD           0x2A
298c2ecf20Sopenharmony_ci#define MFC_PUTBS_CMD           0x29
308c2ecf20Sopenharmony_ci#define MFC_PUTRF_CMD           0x32
318c2ecf20Sopenharmony_ci#define MFC_PUTRB_CMD           0x31
328c2ecf20Sopenharmony_ci#define MFC_PUTL_CMD            0x24
338c2ecf20Sopenharmony_ci#define MFC_PUTRL_CMD           0x34
348c2ecf20Sopenharmony_ci#define MFC_PUTLF_CMD           0x26
358c2ecf20Sopenharmony_ci#define MFC_PUTLB_CMD           0x25
368c2ecf20Sopenharmony_ci#define MFC_PUTRLF_CMD          0x36
378c2ecf20Sopenharmony_ci#define MFC_PUTRLB_CMD          0x35
388c2ecf20Sopenharmony_ci
398c2ecf20Sopenharmony_ci#define MFC_GET_CMD             0x40
408c2ecf20Sopenharmony_ci#define MFC_GETS_CMD            0x48
418c2ecf20Sopenharmony_ci#define MFC_GETF_CMD            0x42
428c2ecf20Sopenharmony_ci#define MFC_GETB_CMD            0x41
438c2ecf20Sopenharmony_ci#define MFC_GETFS_CMD           0x4A
448c2ecf20Sopenharmony_ci#define MFC_GETBS_CMD           0x49
458c2ecf20Sopenharmony_ci#define MFC_GETL_CMD            0x44
468c2ecf20Sopenharmony_ci#define MFC_GETLF_CMD           0x46
478c2ecf20Sopenharmony_ci#define MFC_GETLB_CMD           0x45
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci#define MFC_SDCRT_CMD           0x80
508c2ecf20Sopenharmony_ci#define MFC_SDCRTST_CMD         0x81
518c2ecf20Sopenharmony_ci#define MFC_SDCRZ_CMD           0x89
528c2ecf20Sopenharmony_ci#define MFC_SDCRS_CMD           0x8D
538c2ecf20Sopenharmony_ci#define MFC_SDCRF_CMD           0x8F
548c2ecf20Sopenharmony_ci
558c2ecf20Sopenharmony_ci#define MFC_GETLLAR_CMD         0xD0
568c2ecf20Sopenharmony_ci#define MFC_PUTLLC_CMD          0xB4
578c2ecf20Sopenharmony_ci#define MFC_PUTLLUC_CMD         0xB0
588c2ecf20Sopenharmony_ci#define MFC_PUTQLLUC_CMD        0xB8
598c2ecf20Sopenharmony_ci#define MFC_SNDSIG_CMD          0xA0
608c2ecf20Sopenharmony_ci#define MFC_SNDSIGB_CMD         0xA1
618c2ecf20Sopenharmony_ci#define MFC_SNDSIGF_CMD         0xA2
628c2ecf20Sopenharmony_ci#define MFC_BARRIER_CMD         0xC0
638c2ecf20Sopenharmony_ci#define MFC_EIEIO_CMD           0xC8
648c2ecf20Sopenharmony_ci#define MFC_SYNC_CMD            0xCC
658c2ecf20Sopenharmony_ci
668c2ecf20Sopenharmony_ci#define MFC_MIN_DMA_SIZE_SHIFT  4       /* 16 bytes */
678c2ecf20Sopenharmony_ci#define MFC_MAX_DMA_SIZE_SHIFT  14      /* 16384 bytes */
688c2ecf20Sopenharmony_ci#define MFC_MIN_DMA_SIZE        (1 << MFC_MIN_DMA_SIZE_SHIFT)
698c2ecf20Sopenharmony_ci#define MFC_MAX_DMA_SIZE        (1 << MFC_MAX_DMA_SIZE_SHIFT)
708c2ecf20Sopenharmony_ci#define MFC_MIN_DMA_SIZE_MASK   (MFC_MIN_DMA_SIZE - 1)
718c2ecf20Sopenharmony_ci#define MFC_MAX_DMA_SIZE_MASK   (MFC_MAX_DMA_SIZE - 1)
728c2ecf20Sopenharmony_ci#define MFC_MIN_DMA_LIST_SIZE   0x0008  /*   8 bytes */
738c2ecf20Sopenharmony_ci#define MFC_MAX_DMA_LIST_SIZE   0x4000  /* 16K bytes */
748c2ecf20Sopenharmony_ci
758c2ecf20Sopenharmony_ci#define MFC_TAGID_TO_TAGMASK(tag_id)  (1 << (tag_id & 0x1F))
768c2ecf20Sopenharmony_ci
778c2ecf20Sopenharmony_ci/* Events for Channels 0-2 */
788c2ecf20Sopenharmony_ci#define MFC_DMA_TAG_STATUS_UPDATE_EVENT     0x00000001
798c2ecf20Sopenharmony_ci#define MFC_DMA_TAG_CMD_STALL_NOTIFY_EVENT  0x00000002
808c2ecf20Sopenharmony_ci#define MFC_DMA_QUEUE_AVAILABLE_EVENT       0x00000008
818c2ecf20Sopenharmony_ci#define MFC_SPU_MAILBOX_WRITTEN_EVENT       0x00000010
828c2ecf20Sopenharmony_ci#define MFC_DECREMENTER_EVENT               0x00000020
838c2ecf20Sopenharmony_ci#define MFC_PU_INT_MAILBOX_AVAILABLE_EVENT  0x00000040
848c2ecf20Sopenharmony_ci#define MFC_PU_MAILBOX_AVAILABLE_EVENT      0x00000080
858c2ecf20Sopenharmony_ci#define MFC_SIGNAL_2_EVENT                  0x00000100
868c2ecf20Sopenharmony_ci#define MFC_SIGNAL_1_EVENT                  0x00000200
878c2ecf20Sopenharmony_ci#define MFC_LLR_LOST_EVENT                  0x00000400
888c2ecf20Sopenharmony_ci#define MFC_PRIV_ATTN_EVENT                 0x00000800
898c2ecf20Sopenharmony_ci#define MFC_MULTI_SRC_EVENT                 0x00001000
908c2ecf20Sopenharmony_ci
918c2ecf20Sopenharmony_ci/* Flag indicating progress during context switch. */
928c2ecf20Sopenharmony_ci#define SPU_CONTEXT_SWITCH_PENDING	0UL
938c2ecf20Sopenharmony_ci#define SPU_CONTEXT_FAULT_PENDING	1UL
948c2ecf20Sopenharmony_ci
958c2ecf20Sopenharmony_cistruct spu_context;
968c2ecf20Sopenharmony_cistruct spu_runqueue;
978c2ecf20Sopenharmony_cistruct spu_lscsa;
988c2ecf20Sopenharmony_cistruct device_node;
998c2ecf20Sopenharmony_ci
1008c2ecf20Sopenharmony_cienum spu_utilization_state {
1018c2ecf20Sopenharmony_ci	SPU_UTIL_USER,
1028c2ecf20Sopenharmony_ci	SPU_UTIL_SYSTEM,
1038c2ecf20Sopenharmony_ci	SPU_UTIL_IOWAIT,
1048c2ecf20Sopenharmony_ci	SPU_UTIL_IDLE_LOADED,
1058c2ecf20Sopenharmony_ci	SPU_UTIL_MAX
1068c2ecf20Sopenharmony_ci};
1078c2ecf20Sopenharmony_ci
1088c2ecf20Sopenharmony_cistruct spu {
1098c2ecf20Sopenharmony_ci	const char *name;
1108c2ecf20Sopenharmony_ci	unsigned long local_store_phys;
1118c2ecf20Sopenharmony_ci	u8 *local_store;
1128c2ecf20Sopenharmony_ci	unsigned long problem_phys;
1138c2ecf20Sopenharmony_ci	struct spu_problem __iomem *problem;
1148c2ecf20Sopenharmony_ci	struct spu_priv2 __iomem *priv2;
1158c2ecf20Sopenharmony_ci	struct list_head cbe_list;
1168c2ecf20Sopenharmony_ci	struct list_head full_list;
1178c2ecf20Sopenharmony_ci	enum { SPU_FREE, SPU_USED } alloc_state;
1188c2ecf20Sopenharmony_ci	int number;
1198c2ecf20Sopenharmony_ci	unsigned int irqs[3];
1208c2ecf20Sopenharmony_ci	u32 node;
1218c2ecf20Sopenharmony_ci	unsigned long flags;
1228c2ecf20Sopenharmony_ci	u64 class_0_pending;
1238c2ecf20Sopenharmony_ci	u64 class_0_dar;
1248c2ecf20Sopenharmony_ci	u64 class_1_dar;
1258c2ecf20Sopenharmony_ci	u64 class_1_dsisr;
1268c2ecf20Sopenharmony_ci	size_t ls_size;
1278c2ecf20Sopenharmony_ci	unsigned int slb_replace;
1288c2ecf20Sopenharmony_ci	struct mm_struct *mm;
1298c2ecf20Sopenharmony_ci	struct spu_context *ctx;
1308c2ecf20Sopenharmony_ci	struct spu_runqueue *rq;
1318c2ecf20Sopenharmony_ci	unsigned long long timestamp;
1328c2ecf20Sopenharmony_ci	pid_t pid;
1338c2ecf20Sopenharmony_ci	pid_t tgid;
1348c2ecf20Sopenharmony_ci	spinlock_t register_lock;
1358c2ecf20Sopenharmony_ci
1368c2ecf20Sopenharmony_ci	void (* wbox_callback)(struct spu *spu);
1378c2ecf20Sopenharmony_ci	void (* ibox_callback)(struct spu *spu);
1388c2ecf20Sopenharmony_ci	void (* stop_callback)(struct spu *spu, int irq);
1398c2ecf20Sopenharmony_ci	void (* mfc_callback)(struct spu *spu);
1408c2ecf20Sopenharmony_ci
1418c2ecf20Sopenharmony_ci	char irq_c0[8];
1428c2ecf20Sopenharmony_ci	char irq_c1[8];
1438c2ecf20Sopenharmony_ci	char irq_c2[8];
1448c2ecf20Sopenharmony_ci
1458c2ecf20Sopenharmony_ci	u64 spe_id;
1468c2ecf20Sopenharmony_ci
1478c2ecf20Sopenharmony_ci	void* pdata; /* platform private data */
1488c2ecf20Sopenharmony_ci
1498c2ecf20Sopenharmony_ci	/* of based platforms only */
1508c2ecf20Sopenharmony_ci	struct device_node *devnode;
1518c2ecf20Sopenharmony_ci
1528c2ecf20Sopenharmony_ci	/* native only */
1538c2ecf20Sopenharmony_ci	struct spu_priv1 __iomem *priv1;
1548c2ecf20Sopenharmony_ci
1558c2ecf20Sopenharmony_ci	/* beat only */
1568c2ecf20Sopenharmony_ci	u64 shadow_int_mask_RW[3];
1578c2ecf20Sopenharmony_ci
1588c2ecf20Sopenharmony_ci	struct device dev;
1598c2ecf20Sopenharmony_ci
1608c2ecf20Sopenharmony_ci	int has_mem_affinity;
1618c2ecf20Sopenharmony_ci	struct list_head aff_list;
1628c2ecf20Sopenharmony_ci
1638c2ecf20Sopenharmony_ci	struct {
1648c2ecf20Sopenharmony_ci		/* protected by interrupt reentrancy */
1658c2ecf20Sopenharmony_ci		enum spu_utilization_state util_state;
1668c2ecf20Sopenharmony_ci		unsigned long long tstamp;
1678c2ecf20Sopenharmony_ci		unsigned long long times[SPU_UTIL_MAX];
1688c2ecf20Sopenharmony_ci		unsigned long long vol_ctx_switch;
1698c2ecf20Sopenharmony_ci		unsigned long long invol_ctx_switch;
1708c2ecf20Sopenharmony_ci		unsigned long long min_flt;
1718c2ecf20Sopenharmony_ci		unsigned long long maj_flt;
1728c2ecf20Sopenharmony_ci		unsigned long long hash_flt;
1738c2ecf20Sopenharmony_ci		unsigned long long slb_flt;
1748c2ecf20Sopenharmony_ci		unsigned long long class2_intr;
1758c2ecf20Sopenharmony_ci		unsigned long long libassist;
1768c2ecf20Sopenharmony_ci	} stats;
1778c2ecf20Sopenharmony_ci};
1788c2ecf20Sopenharmony_ci
1798c2ecf20Sopenharmony_cistruct cbe_spu_info {
1808c2ecf20Sopenharmony_ci	struct mutex list_mutex;
1818c2ecf20Sopenharmony_ci	struct list_head spus;
1828c2ecf20Sopenharmony_ci	int n_spus;
1838c2ecf20Sopenharmony_ci	int nr_active;
1848c2ecf20Sopenharmony_ci	atomic_t busy_spus;
1858c2ecf20Sopenharmony_ci	atomic_t reserved_spus;
1868c2ecf20Sopenharmony_ci};
1878c2ecf20Sopenharmony_ci
1888c2ecf20Sopenharmony_ciextern struct cbe_spu_info cbe_spu_info[];
1898c2ecf20Sopenharmony_ci
1908c2ecf20Sopenharmony_civoid spu_init_channels(struct spu *spu);
1918c2ecf20Sopenharmony_civoid spu_irq_setaffinity(struct spu *spu, int cpu);
1928c2ecf20Sopenharmony_ci
1938c2ecf20Sopenharmony_civoid spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa,
1948c2ecf20Sopenharmony_ci		void *code, int code_size);
1958c2ecf20Sopenharmony_ci
1968c2ecf20Sopenharmony_ciextern void spu_invalidate_slbs(struct spu *spu);
1978c2ecf20Sopenharmony_ciextern void spu_associate_mm(struct spu *spu, struct mm_struct *mm);
1988c2ecf20Sopenharmony_ciint spu_64k_pages_available(void);
1998c2ecf20Sopenharmony_ci
2008c2ecf20Sopenharmony_ci/* Calls from the memory management to the SPU */
2018c2ecf20Sopenharmony_cistruct mm_struct;
2028c2ecf20Sopenharmony_ciextern void spu_flush_all_slbs(struct mm_struct *mm);
2038c2ecf20Sopenharmony_ci
2048c2ecf20Sopenharmony_ci/* This interface allows a profiler (e.g., OProfile) to store a ref
2058c2ecf20Sopenharmony_ci * to spu context information that it creates.	This caching technique
2068c2ecf20Sopenharmony_ci * avoids the need to recreate this information after a save/restore operation.
2078c2ecf20Sopenharmony_ci *
2088c2ecf20Sopenharmony_ci * Assumes the caller has already incremented the ref count to
2098c2ecf20Sopenharmony_ci * profile_info; then spu_context_destroy must call kref_put
2108c2ecf20Sopenharmony_ci * on prof_info_kref.
2118c2ecf20Sopenharmony_ci */
2128c2ecf20Sopenharmony_civoid spu_set_profile_private_kref(struct spu_context *ctx,
2138c2ecf20Sopenharmony_ci				  struct kref *prof_info_kref,
2148c2ecf20Sopenharmony_ci				  void ( * prof_info_release) (struct kref *kref));
2158c2ecf20Sopenharmony_ci
2168c2ecf20Sopenharmony_civoid *spu_get_profile_private_kref(struct spu_context *ctx);
2178c2ecf20Sopenharmony_ci
2188c2ecf20Sopenharmony_ci/* system callbacks from the SPU */
2198c2ecf20Sopenharmony_cistruct spu_syscall_block {
2208c2ecf20Sopenharmony_ci	u64 nr_ret;
2218c2ecf20Sopenharmony_ci	u64 parm[6];
2228c2ecf20Sopenharmony_ci};
2238c2ecf20Sopenharmony_ciextern long spu_sys_callback(struct spu_syscall_block *s);
2248c2ecf20Sopenharmony_ci
2258c2ecf20Sopenharmony_ci/* syscalls implemented in spufs */
2268c2ecf20Sopenharmony_cistruct file;
2278c2ecf20Sopenharmony_cistruct coredump_params;
2288c2ecf20Sopenharmony_cistruct spufs_calls {
2298c2ecf20Sopenharmony_ci	long (*create_thread)(const char __user *name,
2308c2ecf20Sopenharmony_ci					unsigned int flags, umode_t mode,
2318c2ecf20Sopenharmony_ci					struct file *neighbor);
2328c2ecf20Sopenharmony_ci	long (*spu_run)(struct file *filp, __u32 __user *unpc,
2338c2ecf20Sopenharmony_ci						__u32 __user *ustatus);
2348c2ecf20Sopenharmony_ci	int (*coredump_extra_notes_size)(void);
2358c2ecf20Sopenharmony_ci	int (*coredump_extra_notes_write)(struct coredump_params *cprm);
2368c2ecf20Sopenharmony_ci	void (*notify_spus_active)(void);
2378c2ecf20Sopenharmony_ci	struct module *owner;
2388c2ecf20Sopenharmony_ci};
2398c2ecf20Sopenharmony_ci
2408c2ecf20Sopenharmony_ci/* return status from spu_run, same as in libspe */
2418c2ecf20Sopenharmony_ci#define SPE_EVENT_DMA_ALIGNMENT		0x0008	/*A DMA alignment error */
2428c2ecf20Sopenharmony_ci#define SPE_EVENT_SPE_ERROR		0x0010	/*An illegal instruction error*/
2438c2ecf20Sopenharmony_ci#define SPE_EVENT_SPE_DATA_SEGMENT	0x0020	/*A DMA segmentation error    */
2448c2ecf20Sopenharmony_ci#define SPE_EVENT_SPE_DATA_STORAGE	0x0040	/*A DMA storage error */
2458c2ecf20Sopenharmony_ci#define SPE_EVENT_INVALID_DMA		0x0800	/* Invalid MFC DMA */
2468c2ecf20Sopenharmony_ci
2478c2ecf20Sopenharmony_ci/*
2488c2ecf20Sopenharmony_ci * Flags for sys_spu_create.
2498c2ecf20Sopenharmony_ci */
2508c2ecf20Sopenharmony_ci#define SPU_CREATE_EVENTS_ENABLED	0x0001
2518c2ecf20Sopenharmony_ci#define SPU_CREATE_GANG			0x0002
2528c2ecf20Sopenharmony_ci#define SPU_CREATE_NOSCHED		0x0004
2538c2ecf20Sopenharmony_ci#define SPU_CREATE_ISOLATE		0x0008
2548c2ecf20Sopenharmony_ci#define SPU_CREATE_AFFINITY_SPU		0x0010
2558c2ecf20Sopenharmony_ci#define SPU_CREATE_AFFINITY_MEM		0x0020
2568c2ecf20Sopenharmony_ci
2578c2ecf20Sopenharmony_ci#define SPU_CREATE_FLAG_ALL		0x003f /* mask of all valid flags */
2588c2ecf20Sopenharmony_ci
2598c2ecf20Sopenharmony_ci
2608c2ecf20Sopenharmony_ciint register_spu_syscalls(struct spufs_calls *calls);
2618c2ecf20Sopenharmony_civoid unregister_spu_syscalls(struct spufs_calls *calls);
2628c2ecf20Sopenharmony_ci
2638c2ecf20Sopenharmony_ciint spu_add_dev_attr(struct device_attribute *attr);
2648c2ecf20Sopenharmony_civoid spu_remove_dev_attr(struct device_attribute *attr);
2658c2ecf20Sopenharmony_ci
2668c2ecf20Sopenharmony_ciint spu_add_dev_attr_group(struct attribute_group *attrs);
2678c2ecf20Sopenharmony_civoid spu_remove_dev_attr_group(struct attribute_group *attrs);
2688c2ecf20Sopenharmony_ci
2698c2ecf20Sopenharmony_ci/*
2708c2ecf20Sopenharmony_ci * Notifier blocks:
2718c2ecf20Sopenharmony_ci *
2728c2ecf20Sopenharmony_ci * oprofile can get notified when a context switch is performed
2738c2ecf20Sopenharmony_ci * on an spe. The notifer function that gets called is passed
2748c2ecf20Sopenharmony_ci * a pointer to the SPU structure as well as the object-id that
2758c2ecf20Sopenharmony_ci * identifies the binary running on that SPU now.
2768c2ecf20Sopenharmony_ci *
2778c2ecf20Sopenharmony_ci * For a context save, the object-id that is passed is zero,
2788c2ecf20Sopenharmony_ci * identifying that the kernel will run from that moment on.
2798c2ecf20Sopenharmony_ci *
2808c2ecf20Sopenharmony_ci * For a context restore, the object-id is the value written
2818c2ecf20Sopenharmony_ci * to object-id spufs file from user space and the notifer
2828c2ecf20Sopenharmony_ci * function can assume that spu->ctx is valid.
2838c2ecf20Sopenharmony_ci */
2848c2ecf20Sopenharmony_cistruct notifier_block;
2858c2ecf20Sopenharmony_ciint spu_switch_event_register(struct notifier_block * n);
2868c2ecf20Sopenharmony_ciint spu_switch_event_unregister(struct notifier_block * n);
2878c2ecf20Sopenharmony_ci
2888c2ecf20Sopenharmony_ciextern void notify_spus_active(void);
2898c2ecf20Sopenharmony_ciextern void do_notify_spus_active(void);
2908c2ecf20Sopenharmony_ci
2918c2ecf20Sopenharmony_ci/*
2928c2ecf20Sopenharmony_ci * This defines the Local Store, Problem Area and Privilege Area of an SPU.
2938c2ecf20Sopenharmony_ci */
2948c2ecf20Sopenharmony_ci
2958c2ecf20Sopenharmony_ciunion mfc_tag_size_class_cmd {
2968c2ecf20Sopenharmony_ci	struct {
2978c2ecf20Sopenharmony_ci		u16 mfc_size;
2988c2ecf20Sopenharmony_ci		u16 mfc_tag;
2998c2ecf20Sopenharmony_ci		u8  pad;
3008c2ecf20Sopenharmony_ci		u8  mfc_rclassid;
3018c2ecf20Sopenharmony_ci		u16 mfc_cmd;
3028c2ecf20Sopenharmony_ci	} u;
3038c2ecf20Sopenharmony_ci	struct {
3048c2ecf20Sopenharmony_ci		u32 mfc_size_tag32;
3058c2ecf20Sopenharmony_ci		u32 mfc_class_cmd32;
3068c2ecf20Sopenharmony_ci	} by32;
3078c2ecf20Sopenharmony_ci	u64 all64;
3088c2ecf20Sopenharmony_ci};
3098c2ecf20Sopenharmony_ci
3108c2ecf20Sopenharmony_cistruct mfc_cq_sr {
3118c2ecf20Sopenharmony_ci	u64 mfc_cq_data0_RW;
3128c2ecf20Sopenharmony_ci	u64 mfc_cq_data1_RW;
3138c2ecf20Sopenharmony_ci	u64 mfc_cq_data2_RW;
3148c2ecf20Sopenharmony_ci	u64 mfc_cq_data3_RW;
3158c2ecf20Sopenharmony_ci};
3168c2ecf20Sopenharmony_ci
3178c2ecf20Sopenharmony_cistruct spu_problem {
3188c2ecf20Sopenharmony_ci#define MS_SYNC_PENDING         1L
3198c2ecf20Sopenharmony_ci	u64 spc_mssync_RW;					/* 0x0000 */
3208c2ecf20Sopenharmony_ci	u8  pad_0x0008_0x3000[0x3000 - 0x0008];
3218c2ecf20Sopenharmony_ci
3228c2ecf20Sopenharmony_ci	/* DMA Area */
3238c2ecf20Sopenharmony_ci	u8  pad_0x3000_0x3004[0x4];				/* 0x3000 */
3248c2ecf20Sopenharmony_ci	u32 mfc_lsa_W;						/* 0x3004 */
3258c2ecf20Sopenharmony_ci	u64 mfc_ea_W;						/* 0x3008 */
3268c2ecf20Sopenharmony_ci	union mfc_tag_size_class_cmd mfc_union_W;			/* 0x3010 */
3278c2ecf20Sopenharmony_ci	u8  pad_0x3018_0x3104[0xec];				/* 0x3018 */
3288c2ecf20Sopenharmony_ci	u32 dma_qstatus_R;					/* 0x3104 */
3298c2ecf20Sopenharmony_ci	u8  pad_0x3108_0x3204[0xfc];				/* 0x3108 */
3308c2ecf20Sopenharmony_ci	u32 dma_querytype_RW;					/* 0x3204 */
3318c2ecf20Sopenharmony_ci	u8  pad_0x3208_0x321c[0x14];				/* 0x3208 */
3328c2ecf20Sopenharmony_ci	u32 dma_querymask_RW;					/* 0x321c */
3338c2ecf20Sopenharmony_ci	u8  pad_0x3220_0x322c[0xc];				/* 0x3220 */
3348c2ecf20Sopenharmony_ci	u32 dma_tagstatus_R;					/* 0x322c */
3358c2ecf20Sopenharmony_ci#define DMA_TAGSTATUS_INTR_ANY	1u
3368c2ecf20Sopenharmony_ci#define DMA_TAGSTATUS_INTR_ALL	2u
3378c2ecf20Sopenharmony_ci	u8  pad_0x3230_0x4000[0x4000 - 0x3230]; 		/* 0x3230 */
3388c2ecf20Sopenharmony_ci
3398c2ecf20Sopenharmony_ci	/* SPU Control Area */
3408c2ecf20Sopenharmony_ci	u8  pad_0x4000_0x4004[0x4];				/* 0x4000 */
3418c2ecf20Sopenharmony_ci	u32 pu_mb_R;						/* 0x4004 */
3428c2ecf20Sopenharmony_ci	u8  pad_0x4008_0x400c[0x4];				/* 0x4008 */
3438c2ecf20Sopenharmony_ci	u32 spu_mb_W;						/* 0x400c */
3448c2ecf20Sopenharmony_ci	u8  pad_0x4010_0x4014[0x4];				/* 0x4010 */
3458c2ecf20Sopenharmony_ci	u32 mb_stat_R;						/* 0x4014 */
3468c2ecf20Sopenharmony_ci	u8  pad_0x4018_0x401c[0x4];				/* 0x4018 */
3478c2ecf20Sopenharmony_ci	u32 spu_runcntl_RW;					/* 0x401c */
3488c2ecf20Sopenharmony_ci#define SPU_RUNCNTL_STOP	0L
3498c2ecf20Sopenharmony_ci#define SPU_RUNCNTL_RUNNABLE	1L
3508c2ecf20Sopenharmony_ci#define SPU_RUNCNTL_ISOLATE	2L
3518c2ecf20Sopenharmony_ci	u8  pad_0x4020_0x4024[0x4];				/* 0x4020 */
3528c2ecf20Sopenharmony_ci	u32 spu_status_R;					/* 0x4024 */
3538c2ecf20Sopenharmony_ci#define SPU_STOP_STATUS_SHIFT           16
3548c2ecf20Sopenharmony_ci#define SPU_STATUS_STOPPED		0x0
3558c2ecf20Sopenharmony_ci#define SPU_STATUS_RUNNING		0x1
3568c2ecf20Sopenharmony_ci#define SPU_STATUS_STOPPED_BY_STOP	0x2
3578c2ecf20Sopenharmony_ci#define SPU_STATUS_STOPPED_BY_HALT	0x4
3588c2ecf20Sopenharmony_ci#define SPU_STATUS_WAITING_FOR_CHANNEL	0x8
3598c2ecf20Sopenharmony_ci#define SPU_STATUS_SINGLE_STEP		0x10
3608c2ecf20Sopenharmony_ci#define SPU_STATUS_INVALID_INSTR        0x20
3618c2ecf20Sopenharmony_ci#define SPU_STATUS_INVALID_CH           0x40
3628c2ecf20Sopenharmony_ci#define SPU_STATUS_ISOLATED_STATE       0x80
3638c2ecf20Sopenharmony_ci#define SPU_STATUS_ISOLATED_LOAD_STATUS 0x200
3648c2ecf20Sopenharmony_ci#define SPU_STATUS_ISOLATED_EXIT_STATUS 0x400
3658c2ecf20Sopenharmony_ci	u8  pad_0x4028_0x402c[0x4];				/* 0x4028 */
3668c2ecf20Sopenharmony_ci	u32 spu_spe_R;						/* 0x402c */
3678c2ecf20Sopenharmony_ci	u8  pad_0x4030_0x4034[0x4];				/* 0x4030 */
3688c2ecf20Sopenharmony_ci	u32 spu_npc_RW;						/* 0x4034 */
3698c2ecf20Sopenharmony_ci	u8  pad_0x4038_0x14000[0x14000 - 0x4038];		/* 0x4038 */
3708c2ecf20Sopenharmony_ci
3718c2ecf20Sopenharmony_ci	/* Signal Notification Area */
3728c2ecf20Sopenharmony_ci	u8  pad_0x14000_0x1400c[0xc];				/* 0x14000 */
3738c2ecf20Sopenharmony_ci	u32 signal_notify1;					/* 0x1400c */
3748c2ecf20Sopenharmony_ci	u8  pad_0x14010_0x1c00c[0x7ffc];			/* 0x14010 */
3758c2ecf20Sopenharmony_ci	u32 signal_notify2;					/* 0x1c00c */
3768c2ecf20Sopenharmony_ci} __attribute__ ((aligned(0x20000)));
3778c2ecf20Sopenharmony_ci
3788c2ecf20Sopenharmony_ci/* SPU Privilege 2 State Area */
3798c2ecf20Sopenharmony_cistruct spu_priv2 {
3808c2ecf20Sopenharmony_ci	/* MFC Registers */
3818c2ecf20Sopenharmony_ci	u8  pad_0x0000_0x1100[0x1100 - 0x0000]; 		/* 0x0000 */
3828c2ecf20Sopenharmony_ci
3838c2ecf20Sopenharmony_ci	/* SLB Management Registers */
3848c2ecf20Sopenharmony_ci	u8  pad_0x1100_0x1108[0x8];				/* 0x1100 */
3858c2ecf20Sopenharmony_ci	u64 slb_index_W;					/* 0x1108 */
3868c2ecf20Sopenharmony_ci#define SLB_INDEX_MASK				0x7L
3878c2ecf20Sopenharmony_ci	u64 slb_esid_RW;					/* 0x1110 */
3888c2ecf20Sopenharmony_ci	u64 slb_vsid_RW;					/* 0x1118 */
3898c2ecf20Sopenharmony_ci#define SLB_VSID_SUPERVISOR_STATE	(0x1ull << 11)
3908c2ecf20Sopenharmony_ci#define SLB_VSID_SUPERVISOR_STATE_MASK	(0x1ull << 11)
3918c2ecf20Sopenharmony_ci#define SLB_VSID_PROBLEM_STATE		(0x1ull << 10)
3928c2ecf20Sopenharmony_ci#define SLB_VSID_PROBLEM_STATE_MASK	(0x1ull << 10)
3938c2ecf20Sopenharmony_ci#define SLB_VSID_EXECUTE_SEGMENT	(0x1ull << 9)
3948c2ecf20Sopenharmony_ci#define SLB_VSID_NO_EXECUTE_SEGMENT	(0x1ull << 9)
3958c2ecf20Sopenharmony_ci#define SLB_VSID_EXECUTE_SEGMENT_MASK	(0x1ull << 9)
3968c2ecf20Sopenharmony_ci#define SLB_VSID_4K_PAGE		(0x0 << 8)
3978c2ecf20Sopenharmony_ci#define SLB_VSID_LARGE_PAGE		(0x1ull << 8)
3988c2ecf20Sopenharmony_ci#define SLB_VSID_PAGE_SIZE_MASK		(0x1ull << 8)
3998c2ecf20Sopenharmony_ci#define SLB_VSID_CLASS_MASK		(0x1ull << 7)
4008c2ecf20Sopenharmony_ci#define SLB_VSID_VIRTUAL_PAGE_SIZE_MASK	(0x1ull << 6)
4018c2ecf20Sopenharmony_ci	u64 slb_invalidate_entry_W;				/* 0x1120 */
4028c2ecf20Sopenharmony_ci	u64 slb_invalidate_all_W;				/* 0x1128 */
4038c2ecf20Sopenharmony_ci	u8  pad_0x1130_0x2000[0x2000 - 0x1130]; 		/* 0x1130 */
4048c2ecf20Sopenharmony_ci
4058c2ecf20Sopenharmony_ci	/* Context Save / Restore Area */
4068c2ecf20Sopenharmony_ci	struct mfc_cq_sr spuq[16];				/* 0x2000 */
4078c2ecf20Sopenharmony_ci	struct mfc_cq_sr puq[8];				/* 0x2200 */
4088c2ecf20Sopenharmony_ci	u8  pad_0x2300_0x3000[0x3000 - 0x2300]; 		/* 0x2300 */
4098c2ecf20Sopenharmony_ci
4108c2ecf20Sopenharmony_ci	/* MFC Control */
4118c2ecf20Sopenharmony_ci	u64 mfc_control_RW;					/* 0x3000 */
4128c2ecf20Sopenharmony_ci#define MFC_CNTL_RESUME_DMA_QUEUE		(0ull << 0)
4138c2ecf20Sopenharmony_ci#define MFC_CNTL_SUSPEND_DMA_QUEUE		(1ull << 0)
4148c2ecf20Sopenharmony_ci#define MFC_CNTL_SUSPEND_DMA_QUEUE_MASK		(1ull << 0)
4158c2ecf20Sopenharmony_ci#define MFC_CNTL_SUSPEND_MASK			(1ull << 4)
4168c2ecf20Sopenharmony_ci#define MFC_CNTL_NORMAL_DMA_QUEUE_OPERATION	(0ull << 8)
4178c2ecf20Sopenharmony_ci#define MFC_CNTL_SUSPEND_IN_PROGRESS		(1ull << 8)
4188c2ecf20Sopenharmony_ci#define MFC_CNTL_SUSPEND_COMPLETE		(3ull << 8)
4198c2ecf20Sopenharmony_ci#define MFC_CNTL_SUSPEND_DMA_STATUS_MASK	(3ull << 8)
4208c2ecf20Sopenharmony_ci#define MFC_CNTL_DMA_QUEUES_EMPTY		(1ull << 14)
4218c2ecf20Sopenharmony_ci#define MFC_CNTL_DMA_QUEUES_EMPTY_MASK		(1ull << 14)
4228c2ecf20Sopenharmony_ci#define MFC_CNTL_PURGE_DMA_REQUEST		(1ull << 15)
4238c2ecf20Sopenharmony_ci#define MFC_CNTL_PURGE_DMA_IN_PROGRESS		(1ull << 24)
4248c2ecf20Sopenharmony_ci#define MFC_CNTL_PURGE_DMA_COMPLETE		(3ull << 24)
4258c2ecf20Sopenharmony_ci#define MFC_CNTL_PURGE_DMA_STATUS_MASK		(3ull << 24)
4268c2ecf20Sopenharmony_ci#define MFC_CNTL_RESTART_DMA_COMMAND		(1ull << 32)
4278c2ecf20Sopenharmony_ci#define MFC_CNTL_DMA_COMMAND_REISSUE_PENDING	(1ull << 32)
4288c2ecf20Sopenharmony_ci#define MFC_CNTL_DMA_COMMAND_REISSUE_STATUS_MASK (1ull << 32)
4298c2ecf20Sopenharmony_ci#define MFC_CNTL_MFC_PRIVILEGE_STATE		(2ull << 33)
4308c2ecf20Sopenharmony_ci#define MFC_CNTL_MFC_PROBLEM_STATE		(3ull << 33)
4318c2ecf20Sopenharmony_ci#define MFC_CNTL_MFC_KEY_PROTECTION_STATE_MASK	(3ull << 33)
4328c2ecf20Sopenharmony_ci#define MFC_CNTL_DECREMENTER_HALTED		(1ull << 35)
4338c2ecf20Sopenharmony_ci#define MFC_CNTL_DECREMENTER_RUNNING		(1ull << 40)
4348c2ecf20Sopenharmony_ci#define MFC_CNTL_DECREMENTER_STATUS_MASK	(1ull << 40)
4358c2ecf20Sopenharmony_ci	u8  pad_0x3008_0x4000[0x4000 - 0x3008]; 		/* 0x3008 */
4368c2ecf20Sopenharmony_ci
4378c2ecf20Sopenharmony_ci	/* Interrupt Mailbox */
4388c2ecf20Sopenharmony_ci	u64 puint_mb_R;						/* 0x4000 */
4398c2ecf20Sopenharmony_ci	u8  pad_0x4008_0x4040[0x4040 - 0x4008]; 		/* 0x4008 */
4408c2ecf20Sopenharmony_ci
4418c2ecf20Sopenharmony_ci	/* SPU Control */
4428c2ecf20Sopenharmony_ci	u64 spu_privcntl_RW;					/* 0x4040 */
4438c2ecf20Sopenharmony_ci#define SPU_PRIVCNTL_MODE_NORMAL		(0x0ull << 0)
4448c2ecf20Sopenharmony_ci#define SPU_PRIVCNTL_MODE_SINGLE_STEP		(0x1ull << 0)
4458c2ecf20Sopenharmony_ci#define SPU_PRIVCNTL_MODE_MASK			(0x1ull << 0)
4468c2ecf20Sopenharmony_ci#define SPU_PRIVCNTL_NO_ATTENTION_EVENT		(0x0ull << 1)
4478c2ecf20Sopenharmony_ci#define SPU_PRIVCNTL_ATTENTION_EVENT		(0x1ull << 1)
4488c2ecf20Sopenharmony_ci#define SPU_PRIVCNTL_ATTENTION_EVENT_MASK	(0x1ull << 1)
4498c2ecf20Sopenharmony_ci#define SPU_PRIVCNT_LOAD_REQUEST_NORMAL		(0x0ull << 2)
4508c2ecf20Sopenharmony_ci#define SPU_PRIVCNT_LOAD_REQUEST_ENABLE_MASK	(0x1ull << 2)
4518c2ecf20Sopenharmony_ci	u8  pad_0x4048_0x4058[0x10];				/* 0x4048 */
4528c2ecf20Sopenharmony_ci	u64 spu_lslr_RW;					/* 0x4058 */
4538c2ecf20Sopenharmony_ci	u64 spu_chnlcntptr_RW;					/* 0x4060 */
4548c2ecf20Sopenharmony_ci	u64 spu_chnlcnt_RW;					/* 0x4068 */
4558c2ecf20Sopenharmony_ci	u64 spu_chnldata_RW;					/* 0x4070 */
4568c2ecf20Sopenharmony_ci	u64 spu_cfg_RW;						/* 0x4078 */
4578c2ecf20Sopenharmony_ci	u8  pad_0x4080_0x5000[0x5000 - 0x4080]; 		/* 0x4080 */
4588c2ecf20Sopenharmony_ci
4598c2ecf20Sopenharmony_ci	/* PV2_ImplRegs: Implementation-specific privileged-state 2 regs */
4608c2ecf20Sopenharmony_ci	u64 spu_pm_trace_tag_status_RW;				/* 0x5000 */
4618c2ecf20Sopenharmony_ci	u64 spu_tag_status_query_RW;				/* 0x5008 */
4628c2ecf20Sopenharmony_ci#define TAG_STATUS_QUERY_CONDITION_BITS (0x3ull << 32)
4638c2ecf20Sopenharmony_ci#define TAG_STATUS_QUERY_MASK_BITS (0xffffffffull)
4648c2ecf20Sopenharmony_ci	u64 spu_cmd_buf1_RW;					/* 0x5010 */
4658c2ecf20Sopenharmony_ci#define SPU_COMMAND_BUFFER_1_LSA_BITS (0x7ffffull << 32)
4668c2ecf20Sopenharmony_ci#define SPU_COMMAND_BUFFER_1_EAH_BITS (0xffffffffull)
4678c2ecf20Sopenharmony_ci	u64 spu_cmd_buf2_RW;					/* 0x5018 */
4688c2ecf20Sopenharmony_ci#define SPU_COMMAND_BUFFER_2_EAL_BITS ((0xffffffffull) << 32)
4698c2ecf20Sopenharmony_ci#define SPU_COMMAND_BUFFER_2_TS_BITS (0xffffull << 16)
4708c2ecf20Sopenharmony_ci#define SPU_COMMAND_BUFFER_2_TAG_BITS (0x3full)
4718c2ecf20Sopenharmony_ci	u64 spu_atomic_status_RW;				/* 0x5020 */
4728c2ecf20Sopenharmony_ci} __attribute__ ((aligned(0x20000)));
4738c2ecf20Sopenharmony_ci
4748c2ecf20Sopenharmony_ci/* SPU Privilege 1 State Area */
4758c2ecf20Sopenharmony_cistruct spu_priv1 {
4768c2ecf20Sopenharmony_ci	/* Control and Configuration Area */
4778c2ecf20Sopenharmony_ci	u64 mfc_sr1_RW;						/* 0x000 */
4788c2ecf20Sopenharmony_ci#define MFC_STATE1_LOCAL_STORAGE_DECODE_MASK	0x01ull
4798c2ecf20Sopenharmony_ci#define MFC_STATE1_BUS_TLBIE_MASK		0x02ull
4808c2ecf20Sopenharmony_ci#define MFC_STATE1_REAL_MODE_OFFSET_ENABLE_MASK	0x04ull
4818c2ecf20Sopenharmony_ci#define MFC_STATE1_PROBLEM_STATE_MASK		0x08ull
4828c2ecf20Sopenharmony_ci#define MFC_STATE1_RELOCATE_MASK		0x10ull
4838c2ecf20Sopenharmony_ci#define MFC_STATE1_MASTER_RUN_CONTROL_MASK	0x20ull
4848c2ecf20Sopenharmony_ci#define MFC_STATE1_TABLE_SEARCH_MASK		0x40ull
4858c2ecf20Sopenharmony_ci	u64 mfc_lpid_RW;					/* 0x008 */
4868c2ecf20Sopenharmony_ci	u64 spu_idr_RW;						/* 0x010 */
4878c2ecf20Sopenharmony_ci	u64 mfc_vr_RO;						/* 0x018 */
4888c2ecf20Sopenharmony_ci#define MFC_VERSION_BITS		(0xffff << 16)
4898c2ecf20Sopenharmony_ci#define MFC_REVISION_BITS		(0xffff)
4908c2ecf20Sopenharmony_ci#define MFC_GET_VERSION_BITS(vr)	(((vr) & MFC_VERSION_BITS) >> 16)
4918c2ecf20Sopenharmony_ci#define MFC_GET_REVISION_BITS(vr)	((vr) & MFC_REVISION_BITS)
4928c2ecf20Sopenharmony_ci	u64 spu_vr_RO;						/* 0x020 */
4938c2ecf20Sopenharmony_ci#define SPU_VERSION_BITS		(0xffff << 16)
4948c2ecf20Sopenharmony_ci#define SPU_REVISION_BITS		(0xffff)
4958c2ecf20Sopenharmony_ci#define SPU_GET_VERSION_BITS(vr)	(vr & SPU_VERSION_BITS) >> 16
4968c2ecf20Sopenharmony_ci#define SPU_GET_REVISION_BITS(vr)	(vr & SPU_REVISION_BITS)
4978c2ecf20Sopenharmony_ci	u8  pad_0x28_0x100[0x100 - 0x28];			/* 0x28 */
4988c2ecf20Sopenharmony_ci
4998c2ecf20Sopenharmony_ci	/* Interrupt Area */
5008c2ecf20Sopenharmony_ci	u64 int_mask_RW[3];					/* 0x100 */
5018c2ecf20Sopenharmony_ci#define CLASS0_ENABLE_DMA_ALIGNMENT_INTR		0x1L
5028c2ecf20Sopenharmony_ci#define CLASS0_ENABLE_INVALID_DMA_COMMAND_INTR		0x2L
5038c2ecf20Sopenharmony_ci#define CLASS0_ENABLE_SPU_ERROR_INTR			0x4L
5048c2ecf20Sopenharmony_ci#define CLASS0_ENABLE_MFC_FIR_INTR			0x8L
5058c2ecf20Sopenharmony_ci#define CLASS1_ENABLE_SEGMENT_FAULT_INTR		0x1L
5068c2ecf20Sopenharmony_ci#define CLASS1_ENABLE_STORAGE_FAULT_INTR		0x2L
5078c2ecf20Sopenharmony_ci#define CLASS1_ENABLE_LS_COMPARE_SUSPEND_ON_GET_INTR	0x4L
5088c2ecf20Sopenharmony_ci#define CLASS1_ENABLE_LS_COMPARE_SUSPEND_ON_PUT_INTR	0x8L
5098c2ecf20Sopenharmony_ci#define CLASS2_ENABLE_MAILBOX_INTR			0x1L
5108c2ecf20Sopenharmony_ci#define CLASS2_ENABLE_SPU_STOP_INTR			0x2L
5118c2ecf20Sopenharmony_ci#define CLASS2_ENABLE_SPU_HALT_INTR			0x4L
5128c2ecf20Sopenharmony_ci#define CLASS2_ENABLE_SPU_DMA_TAG_GROUP_COMPLETE_INTR	0x8L
5138c2ecf20Sopenharmony_ci#define CLASS2_ENABLE_MAILBOX_THRESHOLD_INTR		0x10L
5148c2ecf20Sopenharmony_ci	u8  pad_0x118_0x140[0x28];				/* 0x118 */
5158c2ecf20Sopenharmony_ci	u64 int_stat_RW[3];					/* 0x140 */
5168c2ecf20Sopenharmony_ci#define CLASS0_DMA_ALIGNMENT_INTR			0x1L
5178c2ecf20Sopenharmony_ci#define CLASS0_INVALID_DMA_COMMAND_INTR			0x2L
5188c2ecf20Sopenharmony_ci#define CLASS0_SPU_ERROR_INTR				0x4L
5198c2ecf20Sopenharmony_ci#define CLASS0_INTR_MASK				0x7L
5208c2ecf20Sopenharmony_ci#define CLASS1_SEGMENT_FAULT_INTR			0x1L
5218c2ecf20Sopenharmony_ci#define CLASS1_STORAGE_FAULT_INTR			0x2L
5228c2ecf20Sopenharmony_ci#define CLASS1_LS_COMPARE_SUSPEND_ON_GET_INTR		0x4L
5238c2ecf20Sopenharmony_ci#define CLASS1_LS_COMPARE_SUSPEND_ON_PUT_INTR		0x8L
5248c2ecf20Sopenharmony_ci#define CLASS1_INTR_MASK				0xfL
5258c2ecf20Sopenharmony_ci#define CLASS2_MAILBOX_INTR				0x1L
5268c2ecf20Sopenharmony_ci#define CLASS2_SPU_STOP_INTR				0x2L
5278c2ecf20Sopenharmony_ci#define CLASS2_SPU_HALT_INTR				0x4L
5288c2ecf20Sopenharmony_ci#define CLASS2_SPU_DMA_TAG_GROUP_COMPLETE_INTR		0x8L
5298c2ecf20Sopenharmony_ci#define CLASS2_MAILBOX_THRESHOLD_INTR			0x10L
5308c2ecf20Sopenharmony_ci#define CLASS2_INTR_MASK				0x1fL
5318c2ecf20Sopenharmony_ci	u8  pad_0x158_0x180[0x28];				/* 0x158 */
5328c2ecf20Sopenharmony_ci	u64 int_route_RW;					/* 0x180 */
5338c2ecf20Sopenharmony_ci
5348c2ecf20Sopenharmony_ci	/* Interrupt Routing */
5358c2ecf20Sopenharmony_ci	u8  pad_0x188_0x200[0x200 - 0x188];			/* 0x188 */
5368c2ecf20Sopenharmony_ci
5378c2ecf20Sopenharmony_ci	/* Atomic Unit Control Area */
5388c2ecf20Sopenharmony_ci	u64 mfc_atomic_flush_RW;				/* 0x200 */
5398c2ecf20Sopenharmony_ci#define mfc_atomic_flush_enable			0x1L
5408c2ecf20Sopenharmony_ci	u8  pad_0x208_0x280[0x78];				/* 0x208 */
5418c2ecf20Sopenharmony_ci	u64 resource_allocation_groupID_RW;			/* 0x280 */
5428c2ecf20Sopenharmony_ci	u64 resource_allocation_enable_RW; 			/* 0x288 */
5438c2ecf20Sopenharmony_ci	u8  pad_0x290_0x3c8[0x3c8 - 0x290];			/* 0x290 */
5448c2ecf20Sopenharmony_ci
5458c2ecf20Sopenharmony_ci	/* SPU_Cache_ImplRegs: Implementation-dependent cache registers */
5468c2ecf20Sopenharmony_ci
5478c2ecf20Sopenharmony_ci	u64 smf_sbi_signal_sel;					/* 0x3c8 */
5488c2ecf20Sopenharmony_ci#define smf_sbi_mask_lsb	56
5498c2ecf20Sopenharmony_ci#define smf_sbi_shift		(63 - smf_sbi_mask_lsb)
5508c2ecf20Sopenharmony_ci#define smf_sbi_mask		(0x301LL << smf_sbi_shift)
5518c2ecf20Sopenharmony_ci#define smf_sbi_bus0_bits	(0x001LL << smf_sbi_shift)
5528c2ecf20Sopenharmony_ci#define smf_sbi_bus2_bits	(0x100LL << smf_sbi_shift)
5538c2ecf20Sopenharmony_ci#define smf_sbi2_bus0_bits	(0x201LL << smf_sbi_shift)
5548c2ecf20Sopenharmony_ci#define smf_sbi2_bus2_bits	(0x300LL << smf_sbi_shift)
5558c2ecf20Sopenharmony_ci	u64 smf_ato_signal_sel;					/* 0x3d0 */
5568c2ecf20Sopenharmony_ci#define smf_ato_mask_lsb	35
5578c2ecf20Sopenharmony_ci#define smf_ato_shift		(63 - smf_ato_mask_lsb)
5588c2ecf20Sopenharmony_ci#define smf_ato_mask		(0x3LL << smf_ato_shift)
5598c2ecf20Sopenharmony_ci#define smf_ato_bus0_bits	(0x2LL << smf_ato_shift)
5608c2ecf20Sopenharmony_ci#define smf_ato_bus2_bits	(0x1LL << smf_ato_shift)
5618c2ecf20Sopenharmony_ci	u8  pad_0x3d8_0x400[0x400 - 0x3d8];			/* 0x3d8 */
5628c2ecf20Sopenharmony_ci
5638c2ecf20Sopenharmony_ci	/* TLB Management Registers */
5648c2ecf20Sopenharmony_ci	u64 mfc_sdr_RW;						/* 0x400 */
5658c2ecf20Sopenharmony_ci	u8  pad_0x408_0x500[0xf8];				/* 0x408 */
5668c2ecf20Sopenharmony_ci	u64 tlb_index_hint_RO;					/* 0x500 */
5678c2ecf20Sopenharmony_ci	u64 tlb_index_W;					/* 0x508 */
5688c2ecf20Sopenharmony_ci	u64 tlb_vpn_RW;						/* 0x510 */
5698c2ecf20Sopenharmony_ci	u64 tlb_rpn_RW;						/* 0x518 */
5708c2ecf20Sopenharmony_ci	u8  pad_0x520_0x540[0x20];				/* 0x520 */
5718c2ecf20Sopenharmony_ci	u64 tlb_invalidate_entry_W;				/* 0x540 */
5728c2ecf20Sopenharmony_ci	u64 tlb_invalidate_all_W;				/* 0x548 */
5738c2ecf20Sopenharmony_ci	u8  pad_0x550_0x580[0x580 - 0x550];			/* 0x550 */
5748c2ecf20Sopenharmony_ci
5758c2ecf20Sopenharmony_ci	/* SPU_MMU_ImplRegs: Implementation-dependent MMU registers */
5768c2ecf20Sopenharmony_ci	u64 smm_hid;						/* 0x580 */
5778c2ecf20Sopenharmony_ci#define PAGE_SIZE_MASK		0xf000000000000000ull
5788c2ecf20Sopenharmony_ci#define PAGE_SIZE_16MB_64KB	0x2000000000000000ull
5798c2ecf20Sopenharmony_ci	u8  pad_0x588_0x600[0x600 - 0x588];			/* 0x588 */
5808c2ecf20Sopenharmony_ci
5818c2ecf20Sopenharmony_ci	/* MFC Status/Control Area */
5828c2ecf20Sopenharmony_ci	u64 mfc_accr_RW;					/* 0x600 */
5838c2ecf20Sopenharmony_ci#define MFC_ACCR_EA_ACCESS_GET		(1 << 0)
5848c2ecf20Sopenharmony_ci#define MFC_ACCR_EA_ACCESS_PUT		(1 << 1)
5858c2ecf20Sopenharmony_ci#define MFC_ACCR_LS_ACCESS_GET		(1 << 3)
5868c2ecf20Sopenharmony_ci#define MFC_ACCR_LS_ACCESS_PUT		(1 << 4)
5878c2ecf20Sopenharmony_ci	u8  pad_0x608_0x610[0x8];				/* 0x608 */
5888c2ecf20Sopenharmony_ci	u64 mfc_dsisr_RW;					/* 0x610 */
5898c2ecf20Sopenharmony_ci#define MFC_DSISR_PTE_NOT_FOUND		(1 << 30)
5908c2ecf20Sopenharmony_ci#define MFC_DSISR_ACCESS_DENIED		(1 << 27)
5918c2ecf20Sopenharmony_ci#define MFC_DSISR_ATOMIC		(1 << 26)
5928c2ecf20Sopenharmony_ci#define MFC_DSISR_ACCESS_PUT		(1 << 25)
5938c2ecf20Sopenharmony_ci#define MFC_DSISR_ADDR_MATCH		(1 << 22)
5948c2ecf20Sopenharmony_ci#define MFC_DSISR_LS			(1 << 17)
5958c2ecf20Sopenharmony_ci#define MFC_DSISR_L			(1 << 16)
5968c2ecf20Sopenharmony_ci#define MFC_DSISR_ADDRESS_OVERFLOW	(1 << 0)
5978c2ecf20Sopenharmony_ci	u8  pad_0x618_0x620[0x8];				/* 0x618 */
5988c2ecf20Sopenharmony_ci	u64 mfc_dar_RW;						/* 0x620 */
5998c2ecf20Sopenharmony_ci	u8  pad_0x628_0x700[0x700 - 0x628];			/* 0x628 */
6008c2ecf20Sopenharmony_ci
6018c2ecf20Sopenharmony_ci	/* Replacement Management Table (RMT) Area */
6028c2ecf20Sopenharmony_ci	u64 rmt_index_RW;					/* 0x700 */
6038c2ecf20Sopenharmony_ci	u8  pad_0x708_0x710[0x8];				/* 0x708 */
6048c2ecf20Sopenharmony_ci	u64 rmt_data1_RW;					/* 0x710 */
6058c2ecf20Sopenharmony_ci	u8  pad_0x718_0x800[0x800 - 0x718];			/* 0x718 */
6068c2ecf20Sopenharmony_ci
6078c2ecf20Sopenharmony_ci	/* Control/Configuration Registers */
6088c2ecf20Sopenharmony_ci	u64 mfc_dsir_R;						/* 0x800 */
6098c2ecf20Sopenharmony_ci#define MFC_DSIR_Q			(1 << 31)
6108c2ecf20Sopenharmony_ci#define MFC_DSIR_SPU_QUEUE		MFC_DSIR_Q
6118c2ecf20Sopenharmony_ci	u64 mfc_lsacr_RW;					/* 0x808 */
6128c2ecf20Sopenharmony_ci#define MFC_LSACR_COMPARE_MASK		((~0ull) << 32)
6138c2ecf20Sopenharmony_ci#define MFC_LSACR_COMPARE_ADDR		((~0ull) >> 32)
6148c2ecf20Sopenharmony_ci	u64 mfc_lscrr_R;					/* 0x810 */
6158c2ecf20Sopenharmony_ci#define MFC_LSCRR_Q			(1 << 31)
6168c2ecf20Sopenharmony_ci#define MFC_LSCRR_SPU_QUEUE		MFC_LSCRR_Q
6178c2ecf20Sopenharmony_ci#define MFC_LSCRR_QI_SHIFT		32
6188c2ecf20Sopenharmony_ci#define MFC_LSCRR_QI_MASK		((~0ull) << MFC_LSCRR_QI_SHIFT)
6198c2ecf20Sopenharmony_ci	u8  pad_0x818_0x820[0x8];				/* 0x818 */
6208c2ecf20Sopenharmony_ci	u64 mfc_tclass_id_RW;					/* 0x820 */
6218c2ecf20Sopenharmony_ci#define MFC_TCLASS_ID_ENABLE		(1L << 0L)
6228c2ecf20Sopenharmony_ci#define MFC_TCLASS_SLOT2_ENABLE		(1L << 5L)
6238c2ecf20Sopenharmony_ci#define MFC_TCLASS_SLOT1_ENABLE		(1L << 6L)
6248c2ecf20Sopenharmony_ci#define MFC_TCLASS_SLOT0_ENABLE		(1L << 7L)
6258c2ecf20Sopenharmony_ci#define MFC_TCLASS_QUOTA_2_SHIFT	8L
6268c2ecf20Sopenharmony_ci#define MFC_TCLASS_QUOTA_1_SHIFT	16L
6278c2ecf20Sopenharmony_ci#define MFC_TCLASS_QUOTA_0_SHIFT	24L
6288c2ecf20Sopenharmony_ci#define MFC_TCLASS_QUOTA_2_MASK		(0x1FL << MFC_TCLASS_QUOTA_2_SHIFT)
6298c2ecf20Sopenharmony_ci#define MFC_TCLASS_QUOTA_1_MASK		(0x1FL << MFC_TCLASS_QUOTA_1_SHIFT)
6308c2ecf20Sopenharmony_ci#define MFC_TCLASS_QUOTA_0_MASK		(0x1FL << MFC_TCLASS_QUOTA_0_SHIFT)
6318c2ecf20Sopenharmony_ci	u8  pad_0x828_0x900[0x900 - 0x828];			/* 0x828 */
6328c2ecf20Sopenharmony_ci
6338c2ecf20Sopenharmony_ci	/* Real Mode Support Registers */
6348c2ecf20Sopenharmony_ci	u64 mfc_rm_boundary;					/* 0x900 */
6358c2ecf20Sopenharmony_ci	u8  pad_0x908_0x938[0x30];				/* 0x908 */
6368c2ecf20Sopenharmony_ci	u64 smf_dma_signal_sel;					/* 0x938 */
6378c2ecf20Sopenharmony_ci#define mfc_dma1_mask_lsb	41
6388c2ecf20Sopenharmony_ci#define mfc_dma1_shift		(63 - mfc_dma1_mask_lsb)
6398c2ecf20Sopenharmony_ci#define mfc_dma1_mask		(0x3LL << mfc_dma1_shift)
6408c2ecf20Sopenharmony_ci#define mfc_dma1_bits		(0x1LL << mfc_dma1_shift)
6418c2ecf20Sopenharmony_ci#define mfc_dma2_mask_lsb	43
6428c2ecf20Sopenharmony_ci#define mfc_dma2_shift		(63 - mfc_dma2_mask_lsb)
6438c2ecf20Sopenharmony_ci#define mfc_dma2_mask		(0x3LL << mfc_dma2_shift)
6448c2ecf20Sopenharmony_ci#define mfc_dma2_bits		(0x1LL << mfc_dma2_shift)
6458c2ecf20Sopenharmony_ci	u8  pad_0x940_0xa38[0xf8];				/* 0x940 */
6468c2ecf20Sopenharmony_ci	u64 smm_signal_sel;					/* 0xa38 */
6478c2ecf20Sopenharmony_ci#define smm_sig_mask_lsb	12
6488c2ecf20Sopenharmony_ci#define smm_sig_shift		(63 - smm_sig_mask_lsb)
6498c2ecf20Sopenharmony_ci#define smm_sig_mask		(0x3LL << smm_sig_shift)
6508c2ecf20Sopenharmony_ci#define smm_sig_bus0_bits	(0x2LL << smm_sig_shift)
6518c2ecf20Sopenharmony_ci#define smm_sig_bus2_bits	(0x1LL << smm_sig_shift)
6528c2ecf20Sopenharmony_ci	u8  pad_0xa40_0xc00[0xc00 - 0xa40];			/* 0xa40 */
6538c2ecf20Sopenharmony_ci
6548c2ecf20Sopenharmony_ci	/* DMA Command Error Area */
6558c2ecf20Sopenharmony_ci	u64 mfc_cer_R;						/* 0xc00 */
6568c2ecf20Sopenharmony_ci#define MFC_CER_Q		(1 << 31)
6578c2ecf20Sopenharmony_ci#define MFC_CER_SPU_QUEUE	MFC_CER_Q
6588c2ecf20Sopenharmony_ci	u8  pad_0xc08_0x1000[0x1000 - 0xc08];			/* 0xc08 */
6598c2ecf20Sopenharmony_ci
6608c2ecf20Sopenharmony_ci	/* PV1_ImplRegs: Implementation-dependent privileged-state 1 regs */
6618c2ecf20Sopenharmony_ci	/* DMA Command Error Area */
6628c2ecf20Sopenharmony_ci	u64 spu_ecc_cntl_RW;					/* 0x1000 */
6638c2ecf20Sopenharmony_ci#define SPU_ECC_CNTL_E			(1ull << 0ull)
6648c2ecf20Sopenharmony_ci#define SPU_ECC_CNTL_ENABLE		SPU_ECC_CNTL_E
6658c2ecf20Sopenharmony_ci#define SPU_ECC_CNTL_DISABLE		(~SPU_ECC_CNTL_E & 1L)
6668c2ecf20Sopenharmony_ci#define SPU_ECC_CNTL_S			(1ull << 1ull)
6678c2ecf20Sopenharmony_ci#define SPU_ECC_STOP_AFTER_ERROR	SPU_ECC_CNTL_S
6688c2ecf20Sopenharmony_ci#define SPU_ECC_CONTINUE_AFTER_ERROR	(~SPU_ECC_CNTL_S & 2L)
6698c2ecf20Sopenharmony_ci#define SPU_ECC_CNTL_B			(1ull << 2ull)
6708c2ecf20Sopenharmony_ci#define SPU_ECC_BACKGROUND_ENABLE	SPU_ECC_CNTL_B
6718c2ecf20Sopenharmony_ci#define SPU_ECC_BACKGROUND_DISABLE	(~SPU_ECC_CNTL_B & 4L)
6728c2ecf20Sopenharmony_ci#define SPU_ECC_CNTL_I_SHIFT		3ull
6738c2ecf20Sopenharmony_ci#define SPU_ECC_CNTL_I_MASK		(3ull << SPU_ECC_CNTL_I_SHIFT)
6748c2ecf20Sopenharmony_ci#define SPU_ECC_WRITE_ALWAYS		(~SPU_ECC_CNTL_I & 12L)
6758c2ecf20Sopenharmony_ci#define SPU_ECC_WRITE_CORRECTABLE	(1ull << SPU_ECC_CNTL_I_SHIFT)
6768c2ecf20Sopenharmony_ci#define SPU_ECC_WRITE_UNCORRECTABLE	(3ull << SPU_ECC_CNTL_I_SHIFT)
6778c2ecf20Sopenharmony_ci#define SPU_ECC_CNTL_D			(1ull << 5ull)
6788c2ecf20Sopenharmony_ci#define SPU_ECC_DETECTION_ENABLE	SPU_ECC_CNTL_D
6798c2ecf20Sopenharmony_ci#define SPU_ECC_DETECTION_DISABLE	(~SPU_ECC_CNTL_D & 32L)
6808c2ecf20Sopenharmony_ci	u64 spu_ecc_stat_RW;					/* 0x1008 */
6818c2ecf20Sopenharmony_ci#define SPU_ECC_CORRECTED_ERROR		(1ull << 0ul)
6828c2ecf20Sopenharmony_ci#define SPU_ECC_UNCORRECTED_ERROR	(1ull << 1ul)
6838c2ecf20Sopenharmony_ci#define SPU_ECC_SCRUB_COMPLETE		(1ull << 2ul)
6848c2ecf20Sopenharmony_ci#define SPU_ECC_SCRUB_IN_PROGRESS	(1ull << 3ul)
6858c2ecf20Sopenharmony_ci#define SPU_ECC_INSTRUCTION_ERROR	(1ull << 4ul)
6868c2ecf20Sopenharmony_ci#define SPU_ECC_DATA_ERROR		(1ull << 5ul)
6878c2ecf20Sopenharmony_ci#define SPU_ECC_DMA_ERROR		(1ull << 6ul)
6888c2ecf20Sopenharmony_ci#define SPU_ECC_STATUS_CNT_MASK		(256ull << 8)
6898c2ecf20Sopenharmony_ci	u64 spu_ecc_addr_RW;					/* 0x1010 */
6908c2ecf20Sopenharmony_ci	u64 spu_err_mask_RW;					/* 0x1018 */
6918c2ecf20Sopenharmony_ci#define SPU_ERR_ILLEGAL_INSTR		(1ull << 0ul)
6928c2ecf20Sopenharmony_ci#define SPU_ERR_ILLEGAL_CHANNEL		(1ull << 1ul)
6938c2ecf20Sopenharmony_ci	u8  pad_0x1020_0x1028[0x1028 - 0x1020];			/* 0x1020 */
6948c2ecf20Sopenharmony_ci
6958c2ecf20Sopenharmony_ci	/* SPU Debug-Trace Bus (DTB) Selection Registers */
6968c2ecf20Sopenharmony_ci	u64 spu_trig0_sel;					/* 0x1028 */
6978c2ecf20Sopenharmony_ci	u64 spu_trig1_sel;					/* 0x1030 */
6988c2ecf20Sopenharmony_ci	u64 spu_trig2_sel;					/* 0x1038 */
6998c2ecf20Sopenharmony_ci	u64 spu_trig3_sel;					/* 0x1040 */
7008c2ecf20Sopenharmony_ci	u64 spu_trace_sel;					/* 0x1048 */
7018c2ecf20Sopenharmony_ci#define spu_trace_sel_mask		0x1f1fLL
7028c2ecf20Sopenharmony_ci#define spu_trace_sel_bus0_bits		0x1000LL
7038c2ecf20Sopenharmony_ci#define spu_trace_sel_bus2_bits		0x0010LL
7048c2ecf20Sopenharmony_ci	u64 spu_event0_sel;					/* 0x1050 */
7058c2ecf20Sopenharmony_ci	u64 spu_event1_sel;					/* 0x1058 */
7068c2ecf20Sopenharmony_ci	u64 spu_event2_sel;					/* 0x1060 */
7078c2ecf20Sopenharmony_ci	u64 spu_event3_sel;					/* 0x1068 */
7088c2ecf20Sopenharmony_ci	u64 spu_trace_cntl;					/* 0x1070 */
7098c2ecf20Sopenharmony_ci} __attribute__ ((aligned(0x2000)));
7108c2ecf20Sopenharmony_ci
7118c2ecf20Sopenharmony_ci#endif /* __KERNEL__ */
7128c2ecf20Sopenharmony_ci#endif
713