Skip to content

Commit

Permalink
Merge branch 'iommu-for-tony' of git://github.com/ohadbc/omap-iommu i…
Browse files Browse the repository at this point in the history
…nto devel-fixes
  • Loading branch information
Tony Lindgren committed Jul 4, 2011
2 parents be741de + fee17d4 commit fdcc205
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-omap2/iommu2.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ static u32 omap2_get_pte_attr(struct iotlb_entry *e)
attr = e->mixed << 5;
attr |= e->endian;
attr |= e->elsz >> 3;
attr <<= ((e->pgsz & MMU_CAM_PGSZ_4K) ? 0 : 6);

attr <<= (((e->pgsz == MMU_CAM_PGSZ_4K) ||
(e->pgsz == MMU_CAM_PGSZ_64K)) ? 0 : 6);
return attr;
}

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-omap2/omap-iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static struct iommu_device omap4_devices[] = {
.pdata = {
.name = "ducati",
.nr_tlb_entries = 32,
.clk_name = "ducati_ick",
.clk_name = "ipu_fck",
.da_start = 0x0,
.da_end = 0xFFFFF000,
},
Expand Down
6 changes: 3 additions & 3 deletions arch/arm/plat-omap/iovmm.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static size_t sgtable_len(const struct sg_table *sgt)
for_each_sg(sgt->sgl, sg, sgt->nents, i) {
size_t bytes;

bytes = sg_dma_len(sg);
bytes = sg->length;

if (!iopgsz_ok(bytes)) {
pr_err("%s: sg[%d] not iommu pagesize(%x)\n",
Expand Down Expand Up @@ -198,7 +198,7 @@ static void *vmap_sg(const struct sg_table *sgt)
int err;

pa = sg_phys(sg);
bytes = sg_dma_len(sg);
bytes = sg->length;

BUG_ON(bytes != PAGE_SIZE);

Expand Down Expand Up @@ -476,7 +476,7 @@ static int map_iovm_area(struct iommu *obj, struct iovm_struct *new,
struct iotlb_entry e;

pa = sg_phys(sg);
bytes = sg_dma_len(sg);
bytes = sg->length;

flags &= ~IOVMF_PGSZ_MASK;
pgsz = bytes_to_iopgsz(bytes);
Expand Down

0 comments on commit fdcc205

Please sign in to comment.