mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 22:02:28 +00:00
iommu/fsl_pamu: hardcode the window address and size in pamu_config_ppaace
The win_addr and win_size parameters are always set to 0 and 1 << 36 respectively, so just hard code them. Signed-off-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20210401155256.298656-14-hch@lst.de Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
151f9414b8
commit
57fa44be7f
@ -178,8 +178,6 @@ int pamu_update_paace_stash(int liodn, u32 value)
|
|||||||
* pamu_config_paace() - Sets up PPAACE entry for specified liodn
|
* pamu_config_paace() - Sets up PPAACE entry for specified liodn
|
||||||
*
|
*
|
||||||
* @liodn: Logical IO device number
|
* @liodn: Logical IO device number
|
||||||
* @win_addr: starting address of DSA window
|
|
||||||
* @win-size: size of DSA window
|
|
||||||
* @omi: Operation mapping index -- if ~omi == 0 then omi not defined
|
* @omi: Operation mapping index -- if ~omi == 0 then omi not defined
|
||||||
* @stashid: cache stash id for associated cpu -- if ~stashid == 0 then
|
* @stashid: cache stash id for associated cpu -- if ~stashid == 0 then
|
||||||
* stashid not defined
|
* stashid not defined
|
||||||
@ -187,35 +185,22 @@ int pamu_update_paace_stash(int liodn, u32 value)
|
|||||||
*
|
*
|
||||||
* Returns 0 upon success else error code < 0 returned
|
* Returns 0 upon success else error code < 0 returned
|
||||||
*/
|
*/
|
||||||
int pamu_config_ppaace(int liodn, phys_addr_t win_addr, phys_addr_t win_size,
|
int pamu_config_ppaace(int liodn, u32 omi, u32 stashid, int prot)
|
||||||
u32 omi, u32 stashid, int prot)
|
|
||||||
{
|
{
|
||||||
struct paace *ppaace;
|
struct paace *ppaace;
|
||||||
|
|
||||||
if ((win_size & (win_size - 1)) || win_size < PAMU_PAGE_SIZE) {
|
|
||||||
pr_debug("window size too small or not a power of two %pa\n",
|
|
||||||
&win_size);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (win_addr & (win_size - 1)) {
|
|
||||||
pr_debug("window address is not aligned with window size\n");
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ppaace = pamu_get_ppaace(liodn);
|
ppaace = pamu_get_ppaace(liodn);
|
||||||
if (!ppaace)
|
if (!ppaace)
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
|
|
||||||
/* window size is 2^(WSE+1) bytes */
|
/* window size is 2^(WSE+1) bytes */
|
||||||
set_bf(ppaace->addr_bitfields, PPAACE_AF_WSE,
|
set_bf(ppaace->addr_bitfields, PPAACE_AF_WSE,
|
||||||
map_addrspace_size_to_wse(win_size));
|
map_addrspace_size_to_wse(1ULL << 36));
|
||||||
|
|
||||||
pamu_init_ppaace(ppaace);
|
pamu_init_ppaace(ppaace);
|
||||||
|
|
||||||
ppaace->wbah = win_addr >> (PAMU_PAGE_SHIFT + 20);
|
ppaace->wbah = 0;
|
||||||
set_bf(ppaace->addr_bitfields, PPAACE_AF_WBAL,
|
set_bf(ppaace->addr_bitfields, PPAACE_AF_WBAL, 0);
|
||||||
(win_addr >> PAMU_PAGE_SHIFT));
|
|
||||||
|
|
||||||
/* set up operation mapping if it's configured */
|
/* set up operation mapping if it's configured */
|
||||||
if (omi < OME_NUMBER_ENTRIES) {
|
if (omi < OME_NUMBER_ENTRIES) {
|
||||||
|
@ -383,8 +383,7 @@ struct ome {
|
|||||||
int pamu_domain_init(void);
|
int pamu_domain_init(void);
|
||||||
int pamu_enable_liodn(int liodn);
|
int pamu_enable_liodn(int liodn);
|
||||||
int pamu_disable_liodn(int liodn);
|
int pamu_disable_liodn(int liodn);
|
||||||
int pamu_config_ppaace(int liodn, phys_addr_t win_addr, phys_addr_t win_size,
|
int pamu_config_ppaace(int liodn, u32 omi, uint32_t stashid, int prot);
|
||||||
u32 omi, uint32_t stashid, int prot);
|
|
||||||
|
|
||||||
u32 get_stash_id(u32 stash_dest_hint, u32 vcpu);
|
u32 get_stash_id(u32 stash_dest_hint, u32 vcpu);
|
||||||
void get_ome_index(u32 *omi_index, struct device *dev);
|
void get_ome_index(u32 *omi_index, struct device *dev);
|
||||||
|
@ -78,8 +78,6 @@ static int update_liodn_stash(int liodn, struct fsl_dma_domain *dma_domain,
|
|||||||
static int pamu_set_liodn(struct fsl_dma_domain *dma_domain, struct device *dev,
|
static int pamu_set_liodn(struct fsl_dma_domain *dma_domain, struct device *dev,
|
||||||
int liodn)
|
int liodn)
|
||||||
{
|
{
|
||||||
struct iommu_domain *domain = &dma_domain->iommu_domain;
|
|
||||||
struct iommu_domain_geometry *geom = &domain->geometry;
|
|
||||||
u32 omi_index = ~(u32)0;
|
u32 omi_index = ~(u32)0;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
int ret;
|
int ret;
|
||||||
@ -95,14 +93,10 @@ static int pamu_set_liodn(struct fsl_dma_domain *dma_domain, struct device *dev,
|
|||||||
ret = pamu_disable_liodn(liodn);
|
ret = pamu_disable_liodn(liodn);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
ret = pamu_config_ppaace(liodn, geom->aperture_start,
|
ret = pamu_config_ppaace(liodn, omi_index, dma_domain->stash_id, 0);
|
||||||
geom->aperture_end + 1, omi_index,
|
|
||||||
dma_domain->stash_id, 0);
|
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
ret = pamu_config_ppaace(liodn, geom->aperture_start,
|
ret = pamu_config_ppaace(liodn, ~(u32)0, dma_domain->stash_id,
|
||||||
geom->aperture_end + 1, ~(u32)0,
|
|
||||||
dma_domain->stash_id,
|
|
||||||
PAACE_AP_PERMS_QUERY | PAACE_AP_PERMS_UPDATE);
|
PAACE_AP_PERMS_QUERY | PAACE_AP_PERMS_UPDATE);
|
||||||
out_unlock:
|
out_unlock:
|
||||||
spin_unlock_irqrestore(&iommu_lock, flags);
|
spin_unlock_irqrestore(&iommu_lock, flags);
|
||||||
|
Loading…
Reference in New Issue
Block a user