summaryrefslogtreecommitdiffstats
path: root/drivers/iommu/tegra-gart.c
AgeCommit message (Expand)Author
2018-08-08iommu: Remove the ->map_sg indirectionChristoph Hellwig
2018-06-12treewide: Use array_size() in vmalloc()Kees Cook
2018-05-03iommu/tegra: gart: Fix gart_iommu_unmap()Dmitry Osipenko
2018-05-03iommu/tegra: gart: Add debugging facilityDmitry Osipenko
2017-08-17iommu/tegra-gart: Add support for struct iommu_deviceJoerg Roedel
2017-08-10iommu/tegra-gart: Add iommu_group supportRobin Murphy
2015-04-02Merge branches 'iommu/fixes', 'x86/vt-d', 'x86/amd', 'arm/smmu', 'arm/tegra' ...Joerg Roedel
2015-03-31iommu/tegra: gart: Set aperture at domain initialization timeThierry Reding
2015-03-31iommu/tegra-gart: Make use of domain_alloc and domain_freeJoerg Roedel
2015-01-26iommu/tegra: gart: Provide default ->map_sg() callbackThierry Reding
2015-01-26iommu/tegra: gart: Do not register with busThierry Reding
2014-10-20iommu: drop owner assignment from platform_driversWolfram Sang
2014-09-25iommu: Make of_device_id array constKiran Padwal
2014-09-25iommu/tegra: Convert to iommu_capable() API functionJoerg Roedel
2014-07-07iommu: Constify struct iommu_opsThierry Reding
2013-11-01iommu/tegra-gart: Staticize tegra_gart_pm_opsSachin Kamat
2013-09-24iommu/tegra: gart: cleanup devm_* functions usageWei Yongjun
2013-09-24iommu/tegra: Print phys_addr_t using %paThierry Reding
2013-05-02Merge branches 'iommu/fixes', 'x86/vt-d', 'x86/amd', 'ppc/pamu', 'core' and '...Joerg Roedel
2013-05-02iommu/tegra: Fix printk formats for dma_addr_tVarun Sethi
2013-04-02iommu/fsl: Make iova dma_addr_t in the iommu_iova_to_phys API.Varun Sethi
2013-02-19iommu/tegra: assume CONFIG_OF in gart driverStephen Warren
2013-01-03Drivers: iommu: remove __dev* attributes.Greg Kroah-Hartman
2012-11-28iommu/tegra: gart: Move bus_set_iommu after probe for multi archHiroshi Doyu
2012-07-11iommu/tegra: Implement DOMAIN_ATTR_GEOMETRY attributeHiroshi DOYU
2012-05-11iommu/tegra: gart: Fix register offset correctlyHiroshi DOYU
2012-04-16iommu: tegra/gart: Add device tree supportThierry Reding
2012-04-16iommu: tegra/gart: use correct gart_deviceVandana Salve
2012-03-13iommu/tegra-gart: fix spin_unlock in map failure pathLucas Stach
2012-01-26ARM: IOMMU: Tegra20: Add iommu_ops for GART driverHiroshi DOYU
Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/bash
# shellcheck disable=SC2230

if [ ! -f .gitignore ]
then
  echo "Run as ./travis/$(basename "$0") from top level directory of git repository"
  exit 1
fi

eval "$(ssh-agent -s)"
./.travis/decrypt-if-have-key decb6f6387c4
export KEYSERVER=ipv4.pool.sks-keyservers.net
./packaging/gpg-recv-key phil@firehol.org "0762 9FF7 89EA 6156 012F  9F50 C406 9602 1359 9237"
./packaging/gpg-recv-key costa@tsaousis.gr "4DFF 624A E564 3B51 2872  1F40 29CA 3358 89B9 A863"
# Run the commit hooks in case the developer didn't
git diff 4b825dc642cb6eb9a060e54bf8d69288fbee4904 | ./packaging/check-files -
fakeroot ./packaging/git-build
# Make sure stdout is in blocking mode. If we don't, then conda create will barf during downloads.
# See https://github.com/travis-ci/travis-ci/issues/4704#issuecomment-348435959 for details.
python -c 'import os,sys,fcntl; flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL); fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags&~os.O_NONBLOCK);'
# make self-extractor
./makeself/build-x86_64-static.sh
for i in *.tar.gz; do sha512sum -b "$i" > "$i.sha"; done
for i in *.gz.run; do sha512sum -b "$i" > "$i.sha"; done
./.travis/deploy-if-have-key