2019-05-30 02:57:47 +03:00
/* SPDX-License-Identifier: GPL-2.0-only */
2017-08-09 17:43:03 +03:00
/*
* IOMMU API for ARM architected SMMU implementations .
*
* Copyright ( C ) 2013 ARM Limited
*
* Author : Will Deacon < will . deacon @ arm . com >
*/
2019-08-15 21:37:32 +03:00
# ifndef _ARM_SMMU_H
# define _ARM_SMMU_H
2017-08-09 17:43:03 +03:00
2019-08-15 21:37:33 +03:00
# include <linux/atomic.h>
2019-08-15 21:37:23 +03:00
# include <linux/bits.h>
2019-08-15 21:37:33 +03:00
# include <linux/clk.h>
# include <linux/device.h>
2019-08-20 14:38:49 +03:00
# include <linux/io-64-nonatomic-hi-lo.h>
2019-08-15 21:37:37 +03:00
# include <linux/io-pgtable.h>
2019-08-15 21:37:33 +03:00
# include <linux/iommu.h>
# include <linux/mutex.h>
# include <linux/spinlock.h>
# include <linux/types.h>
2019-08-15 21:37:23 +03:00
2017-08-09 17:43:03 +03:00
/* Configuration registers */
# define ARM_SMMU_GR0_sCR0 0x0
2019-08-15 21:37:23 +03:00
# define sCR0_VMID16EN BIT(31)
# define sCR0_BSU GENMASK(15, 14)
# define sCR0_FB BIT(13)
# define sCR0_PTM BIT(12)
# define sCR0_VMIDPNE BIT(11)
# define sCR0_USFCFG BIT(10)
# define sCR0_GCFGFIE BIT(5)
# define sCR0_GCFGFRE BIT(4)
# define sCR0_EXIDENABLE BIT(3)
# define sCR0_GFIE BIT(2)
# define sCR0_GFRE BIT(1)
# define sCR0_CLIENTPD BIT(0)
2017-08-09 17:43:03 +03:00
/* Auxiliary Configuration register */
# define ARM_SMMU_GR0_sACR 0x10
/* Identification registers */
# define ARM_SMMU_GR0_ID0 0x20
2019-08-15 21:37:23 +03:00
# define ID0_S1TS BIT(30)
# define ID0_S2TS BIT(29)
# define ID0_NTS BIT(28)
# define ID0_SMS BIT(27)
# define ID0_ATOSNS BIT(26)
# define ID0_PTFS_NO_AARCH32 BIT(25)
# define ID0_PTFS_NO_AARCH32S BIT(24)
# define ID0_NUMIRPT GENMASK(23, 16)
# define ID0_CTTW BIT(14)
# define ID0_NUMSIDB GENMASK(12, 9)
# define ID0_EXIDS BIT(8)
# define ID0_NUMSMRG GENMASK(7, 0)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_GR0_ID1 0x24
2019-08-15 21:37:23 +03:00
# define ID1_PAGESIZE BIT(31)
# define ID1_NUMPAGENDXB GENMASK(30, 28)
# define ID1_NUMS2CB GENMASK(23, 16)
# define ID1_NUMCB GENMASK(7, 0)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_GR0_ID2 0x28
2019-08-15 21:37:23 +03:00
# define ID2_VMID16 BIT(15)
# define ID2_PTFS_64K BIT(14)
# define ID2_PTFS_16K BIT(13)
# define ID2_PTFS_4K BIT(12)
# define ID2_UBS GENMASK(11, 8)
# define ID2_OAS GENMASK(7, 4)
# define ID2_IAS GENMASK(3, 0)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_GR0_ID3 0x2c
# define ARM_SMMU_GR0_ID4 0x30
# define ARM_SMMU_GR0_ID5 0x34
# define ARM_SMMU_GR0_ID6 0x38
2019-08-15 21:37:23 +03:00
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_GR0_ID7 0x3c
2019-08-15 21:37:23 +03:00
# define ID7_MAJOR GENMASK(7, 4)
# define ID7_MINOR GENMASK(3, 0)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_GR0_sGFSR 0x48
# define ARM_SMMU_GR0_sGFSYNR0 0x50
# define ARM_SMMU_GR0_sGFSYNR1 0x54
# define ARM_SMMU_GR0_sGFSYNR2 0x58
/* Global TLB invalidation */
# define ARM_SMMU_GR0_TLBIVMID 0x64
# define ARM_SMMU_GR0_TLBIALLNSNH 0x68
# define ARM_SMMU_GR0_TLBIALLH 0x6c
# define ARM_SMMU_GR0_sTLBGSYNC 0x70
2019-08-15 21:37:23 +03:00
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_GR0_sTLBGSTATUS 0x74
2019-08-15 21:37:23 +03:00
# define sTLBGSTATUS_GSACTIVE BIT(0)
2017-08-09 17:43:03 +03:00
/* Stream mapping registers */
# define ARM_SMMU_GR0_SMR(n) (0x800 + ((n) << 2))
2019-08-15 21:37:23 +03:00
# define SMR_VALID BIT(31)
# define SMR_MASK GENMASK(31, 16)
# define SMR_ID GENMASK(15, 0)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_GR0_S2CR(n) (0xc00 + ((n) << 2))
2019-08-15 21:37:23 +03:00
# define S2CR_PRIVCFG GENMASK(25, 24)
2017-08-09 17:43:03 +03:00
enum arm_smmu_s2cr_privcfg {
S2CR_PRIVCFG_DEFAULT ,
S2CR_PRIVCFG_DIPAN ,
S2CR_PRIVCFG_UNPRIV ,
S2CR_PRIVCFG_PRIV ,
} ;
2019-08-15 21:37:23 +03:00
# define S2CR_TYPE GENMASK(17, 16)
enum arm_smmu_s2cr_type {
S2CR_TYPE_TRANS ,
S2CR_TYPE_BYPASS ,
S2CR_TYPE_FAULT ,
} ;
# define S2CR_EXIDVALID BIT(10)
# define S2CR_CBNDX GENMASK(7, 0)
2017-08-09 17:43:03 +03:00
/* Context bank attribute registers */
# define ARM_SMMU_GR1_CBAR(n) (0x0 + ((n) << 2))
2019-08-15 21:37:24 +03:00
# define CBAR_IRPTNDX GENMASK(31, 24)
# define CBAR_TYPE GENMASK(17, 16)
enum arm_smmu_cbar_type {
CBAR_TYPE_S2_TRANS ,
CBAR_TYPE_S1_TRANS_S2_BYPASS ,
CBAR_TYPE_S1_TRANS_S2_FAULT ,
CBAR_TYPE_S1_TRANS_S2_TRANS ,
} ;
# define CBAR_S1_MEMATTR GENMASK(15, 12)
2017-08-09 17:43:03 +03:00
# define CBAR_S1_MEMATTR_WB 0xf
2019-08-15 21:37:24 +03:00
# define CBAR_S1_BPSHCFG GENMASK(9, 8)
# define CBAR_S1_BPSHCFG_NSH 3
# define CBAR_VMID GENMASK(7, 0)
2017-08-09 17:43:03 +03:00
2019-04-22 10:10:36 +03:00
# define ARM_SMMU_GR1_CBFRSYNRA(n) (0x400 + ((n) << 2))
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_GR1_CBA2R(n) (0x800 + ((n) << 2))
2019-08-15 21:37:24 +03:00
# define CBA2R_VMID16 GENMASK(31, 16)
# define CBA2R_VA64 BIT(0)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_SCTLR 0x0
2019-08-15 21:37:25 +03:00
# define SCTLR_S1_ASIDPNE BIT(12)
# define SCTLR_CFCFG BIT(7)
# define SCTLR_CFIE BIT(6)
# define SCTLR_CFRE BIT(5)
# define SCTLR_E BIT(4)
# define SCTLR_AFE BIT(2)
# define SCTLR_TRE BIT(1)
# define SCTLR_M BIT(0)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_ACTLR 0x4
2019-08-15 21:37:25 +03:00
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_RESUME 0x8
2019-08-15 21:37:25 +03:00
# define RESUME_TERMINATE BIT(0)
# define ARM_SMMU_CB_TCR2 0x10
# define TCR2_SEP GENMASK(17, 15)
# define TCR2_SEP_UPSTREAM 0x7
# define TCR2_AS BIT(4)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_TTBR0 0x20
# define ARM_SMMU_CB_TTBR1 0x28
2019-08-15 21:37:25 +03:00
# define TTBRn_ASID GENMASK_ULL(63, 48)
# define ARM_SMMU_CB_TCR 0x30
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_CONTEXTIDR 0x34
# define ARM_SMMU_CB_S1_MAIR0 0x38
# define ARM_SMMU_CB_S1_MAIR1 0x3c
2019-08-15 21:37:25 +03:00
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_PAR 0x50
2019-08-15 21:37:25 +03:00
# define CB_PAR_F BIT(0)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_FSR 0x58
2019-08-15 21:37:25 +03:00
# define FSR_MULTI BIT(31)
# define FSR_SS BIT(30)
# define FSR_UUT BIT(8)
# define FSR_ASF BIT(7)
# define FSR_TLBLKF BIT(6)
# define FSR_TLBMCF BIT(5)
# define FSR_EF BIT(4)
# define FSR_PF BIT(3)
# define FSR_AFF BIT(2)
# define FSR_TF BIT(1)
# define FSR_IGN (FSR_AFF | FSR_ASF | \
FSR_TLBMCF | FSR_TLBLKF )
# define FSR_FAULT (FSR_MULTI | FSR_SS | FSR_UUT | \
FSR_EF | FSR_PF | FSR_TF | FSR_IGN )
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_FAR 0x60
2019-08-15 21:37:25 +03:00
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_FSYNR0 0x68
2019-08-15 21:37:25 +03:00
# define FSYNR0_WNR BIT(4)
2017-08-09 17:43:03 +03:00
# define ARM_SMMU_CB_S1_TLBIVA 0x600
# define ARM_SMMU_CB_S1_TLBIASID 0x610
# define ARM_SMMU_CB_S1_TLBIVAL 0x620
# define ARM_SMMU_CB_S2_TLBIIPAS2 0x630
# define ARM_SMMU_CB_S2_TLBIIPAS2L 0x638
# define ARM_SMMU_CB_TLBSYNC 0x7f0
# define ARM_SMMU_CB_TLBSTATUS 0x7f4
# define ARM_SMMU_CB_ATS1PR 0x800
2019-08-15 21:37:25 +03:00
# define ARM_SMMU_CB_ATSR 0x8f0
# define ATSR_ACTIVE BIT(0)
2017-08-09 17:43:03 +03:00
2019-08-15 21:37:33 +03:00
/* Maximum number of context banks per SMMU */
# define ARM_SMMU_MAX_CBS 128
/* Shared driver definitions */
enum arm_smmu_arch_version {
ARM_SMMU_V1 ,
ARM_SMMU_V1_64K ,
ARM_SMMU_V2 ,
} ;
enum arm_smmu_implementation {
GENERIC_SMMU ,
ARM_MMU500 ,
CAVIUM_SMMUV2 ,
QCOM_SMMUV2 ,
} ;
struct arm_smmu_device {
struct device * dev ;
void __iomem * base ;
unsigned int numpage ;
unsigned int pgshift ;
# define ARM_SMMU_FEAT_COHERENT_WALK (1 << 0)
# define ARM_SMMU_FEAT_STREAM_MATCH (1 << 1)
# define ARM_SMMU_FEAT_TRANS_S1 (1 << 2)
# define ARM_SMMU_FEAT_TRANS_S2 (1 << 3)
# define ARM_SMMU_FEAT_TRANS_NESTED (1 << 4)
# define ARM_SMMU_FEAT_TRANS_OPS (1 << 5)
# define ARM_SMMU_FEAT_VMID16 (1 << 6)
# define ARM_SMMU_FEAT_FMT_AARCH64_4K (1 << 7)
# define ARM_SMMU_FEAT_FMT_AARCH64_16K (1 << 8)
# define ARM_SMMU_FEAT_FMT_AARCH64_64K (1 << 9)
# define ARM_SMMU_FEAT_FMT_AARCH32_L (1 << 10)
# define ARM_SMMU_FEAT_FMT_AARCH32_S (1 << 11)
# define ARM_SMMU_FEAT_EXIDS (1 << 12)
u32 features ;
enum arm_smmu_arch_version version ;
enum arm_smmu_implementation model ;
2019-08-15 21:37:34 +03:00
const struct arm_smmu_impl * impl ;
2019-08-15 21:37:33 +03:00
u32 num_context_banks ;
u32 num_s2_context_banks ;
DECLARE_BITMAP ( context_map , ARM_SMMU_MAX_CBS ) ;
struct arm_smmu_cb * cbs ;
atomic_t irptndx ;
u32 num_mapping_groups ;
u16 streamid_mask ;
u16 smr_mask_mask ;
struct arm_smmu_smr * smrs ;
struct arm_smmu_s2cr * s2crs ;
struct mutex stream_map_mutex ;
unsigned long va_size ;
unsigned long ipa_size ;
unsigned long pa_size ;
unsigned long pgsize_bitmap ;
u32 num_global_irqs ;
u32 num_context_irqs ;
unsigned int * irqs ;
struct clk_bulk_data * clks ;
int num_clks ;
spinlock_t global_sync_lock ;
/* IOMMU core code handle */
struct iommu_device iommu ;
} ;
2019-08-15 21:37:37 +03:00
enum arm_smmu_context_fmt {
ARM_SMMU_CTX_FMT_NONE ,
ARM_SMMU_CTX_FMT_AARCH64 ,
ARM_SMMU_CTX_FMT_AARCH32_L ,
ARM_SMMU_CTX_FMT_AARCH32_S ,
} ;
struct arm_smmu_cfg {
u8 cbndx ;
u8 irptndx ;
union {
u16 asid ;
u16 vmid ;
} ;
enum arm_smmu_cbar_type cbar ;
enum arm_smmu_context_fmt fmt ;
} ;
# define INVALID_IRPTNDX 0xff
enum arm_smmu_domain_stage {
ARM_SMMU_DOMAIN_S1 = 0 ,
ARM_SMMU_DOMAIN_S2 ,
ARM_SMMU_DOMAIN_NESTED ,
ARM_SMMU_DOMAIN_BYPASS ,
} ;
2019-08-23 17:05:45 +03:00
struct arm_smmu_flush_ops {
struct iommu_flush_ops tlb ;
void ( * tlb_inv_range ) ( unsigned long iova , size_t size , size_t granule ,
bool leaf , void * cookie ) ;
void ( * tlb_sync ) ( void * cookie ) ;
} ;
2019-08-15 21:37:37 +03:00
struct arm_smmu_domain {
struct arm_smmu_device * smmu ;
struct io_pgtable_ops * pgtbl_ops ;
2019-08-23 17:05:45 +03:00
const struct arm_smmu_flush_ops * flush_ops ;
2019-08-15 21:37:37 +03:00
struct arm_smmu_cfg cfg ;
enum arm_smmu_domain_stage stage ;
bool non_strict ;
struct mutex init_mutex ; /* Protects smmu pointer */
spinlock_t cb_lock ; /* Serialises ATS1* ops and TLB syncs */
struct iommu_domain domain ;
} ;
2019-08-15 21:37:33 +03:00
/* Implementation details, yay! */
2019-08-15 21:37:34 +03:00
struct arm_smmu_impl {
u32 ( * read_reg ) ( struct arm_smmu_device * smmu , int page , int offset ) ;
void ( * write_reg ) ( struct arm_smmu_device * smmu , int page , int offset ,
u32 val ) ;
u64 ( * read_reg64 ) ( struct arm_smmu_device * smmu , int page , int offset ) ;
void ( * write_reg64 ) ( struct arm_smmu_device * smmu , int page , int offset ,
u64 val ) ;
2019-08-15 21:37:35 +03:00
int ( * cfg_probe ) ( struct arm_smmu_device * smmu ) ;
2019-08-15 21:37:36 +03:00
int ( * reset ) ( struct arm_smmu_device * smmu ) ;
2019-08-15 21:37:37 +03:00
int ( * init_context ) ( struct arm_smmu_domain * smmu_domain ) ;
2019-08-15 21:37:34 +03:00
} ;
static inline void __iomem * arm_smmu_page ( struct arm_smmu_device * smmu , int n )
{
return smmu - > base + ( n < < smmu - > pgshift ) ;
}
static inline u32 arm_smmu_readl ( struct arm_smmu_device * smmu , int page , int offset )
{
if ( smmu - > impl & & unlikely ( smmu - > impl - > read_reg ) )
return smmu - > impl - > read_reg ( smmu , page , offset ) ;
return readl_relaxed ( arm_smmu_page ( smmu , page ) + offset ) ;
}
static inline void arm_smmu_writel ( struct arm_smmu_device * smmu , int page ,
int offset , u32 val )
{
if ( smmu - > impl & & unlikely ( smmu - > impl - > write_reg ) )
smmu - > impl - > write_reg ( smmu , page , offset , val ) ;
else
writel_relaxed ( val , arm_smmu_page ( smmu , page ) + offset ) ;
}
static inline u64 arm_smmu_readq ( struct arm_smmu_device * smmu , int page , int offset )
{
if ( smmu - > impl & & unlikely ( smmu - > impl - > read_reg64 ) )
return smmu - > impl - > read_reg64 ( smmu , page , offset ) ;
return readq_relaxed ( arm_smmu_page ( smmu , page ) + offset ) ;
}
static inline void arm_smmu_writeq ( struct arm_smmu_device * smmu , int page ,
int offset , u64 val )
{
if ( smmu - > impl & & unlikely ( smmu - > impl - > write_reg64 ) )
smmu - > impl - > write_reg64 ( smmu , page , offset , val ) ;
else
writeq_relaxed ( val , arm_smmu_page ( smmu , page ) + offset ) ;
}
# define ARM_SMMU_GR0 0
# define ARM_SMMU_GR1 1
# define ARM_SMMU_CB(s, n) ((s)->numpage + (n))
# define arm_smmu_gr0_read(s, o) \
arm_smmu_readl ( ( s ) , ARM_SMMU_GR0 , ( o ) )
# define arm_smmu_gr0_write(s, o, v) \
arm_smmu_writel ( ( s ) , ARM_SMMU_GR0 , ( o ) , ( v ) )
# define arm_smmu_gr1_read(s, o) \
arm_smmu_readl ( ( s ) , ARM_SMMU_GR1 , ( o ) )
# define arm_smmu_gr1_write(s, o, v) \
arm_smmu_writel ( ( s ) , ARM_SMMU_GR1 , ( o ) , ( v ) )
# define arm_smmu_cb_read(s, n, o) \
arm_smmu_readl ( ( s ) , ARM_SMMU_CB ( ( s ) , ( n ) ) , ( o ) )
# define arm_smmu_cb_write(s, n, o, v) \
arm_smmu_writel ( ( s ) , ARM_SMMU_CB ( ( s ) , ( n ) ) , ( o ) , ( v ) )
# define arm_smmu_cb_readq(s, n, o) \
arm_smmu_readq ( ( s ) , ARM_SMMU_CB ( ( s ) , ( n ) ) , ( o ) )
# define arm_smmu_cb_writeq(s, n, o, v) \
arm_smmu_writeq ( ( s ) , ARM_SMMU_CB ( ( s ) , ( n ) ) , ( o ) , ( v ) )
2019-08-15 21:37:33 +03:00
struct arm_smmu_device * arm_smmu_impl_init ( struct arm_smmu_device * smmu ) ;
2019-08-15 21:37:32 +03:00
# endif /* _ARM_SMMU_H */