/* SPDX-License-Identifier: GPL-2.0 */1/*2* cbe_regs.h3*4* This file is intended to hold the various register definitions for CBE5* on-chip system devices (memory controller, IO controller, etc...)6*7* (C) Copyright IBM Corporation 2001,20068*9* Authors: Maximino Aguilar ([email protected])10* David J. Erb ([email protected])11*12* (c) 2006 Benjamin Herrenschmidt <[email protected]>, IBM Corp.13*/1415#ifndef CBE_REGS_H16#define CBE_REGS_H1718#include <asm/cell-pmu.h>1920/* Cell page table entries */21#define CBE_IOPTE_PP_W 0x8000000000000000ul /* protection: write */22#define CBE_IOPTE_PP_R 0x4000000000000000ul /* protection: read */23#define CBE_IOPTE_M 0x2000000000000000ul /* coherency required */24#define CBE_IOPTE_SO_R 0x1000000000000000ul /* ordering: writes */25#define CBE_IOPTE_SO_RW 0x1800000000000000ul /* ordering: r & w */26#define CBE_IOPTE_RPN_Mask 0x07fffffffffff000ul /* RPN */27#define CBE_IOPTE_H 0x0000000000000800ul /* cache hint */28#define CBE_IOPTE_IOID_Mask 0x00000000000007fful /* ioid */2930#endif /* CBE_REGS_H */313233