From: Ingo Molnar <mingo@elte.hu>
To: Joerg Roedel <joerg.roedel@amd.com>
Cc: iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org
Subject: Re: [git pull] IOMMU updates for 2.6.33
Date: Fri, 27 Nov 2009 20:27:49 +0100 [thread overview]
Message-ID: <20091127192749.GA26676@elte.hu> (raw)
In-Reply-To: <1259330145-14865-1-git-send-email-joerg.roedel@amd.com>
* Joerg Roedel <joerg.roedel@amd.com> wrote:
> Hi Ingo,
>
>
> The following changes since commit 273bee27fa9f79d94b78c83506016f2e41e78983:
> FUJITA Tomonori (1):
> x86: Fix iommu=soft boot option
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git amd-iommu/2.6.33
>
> Joerg Roedel (35):
> x86/amd-iommu: Separate internal interface definitions
> x86/amd-iommu: Update copyright headers
> x86/amd-iommu: Add an index field to struct amd_iommu
> x86/amd-iommu: Add per IOMMU reference counting
> x86/amd-iommu: Add function to complete a tlb flush
> x86/amd-iommu: Make iommu_flush_pages aware of multiple IOMMUs
> x86/amd-iommu: Use __iommu_flush_pages for tlb flushes
> x86/amd-iommu: Remove iommu_flush_domain function
> x86/amd-iommu: Implement protection domain list
> x86/amd-iommu: Reimplement amd_iommu_flush_all_domains()
> x86/amd-iommu: Reimplement flush_all_domains_on_iommu()
> x86/amd-iommu: Make np-cache a global flag
> x86/amd-iommu: Use check_device for amd_iommu_dma_supported
> x86/amd-iommu: Use check_device in get_device_resources
> x86/amd-iommu: Remove iommu parameter from dma_ops_domain_(un)map
> x86/amd-iommu: Make alloc_new_range aware of multiple IOMMUs
> x86/amd-iommu: Remove iommu parameter from __(un)map_single
> x86/amd-iommu: Remove iommu specific handling from dma_ops path
> x86/amd-iommu: Let domain_for_device handle aliases
> x86/amd-iommu: Simplify get_device_resources()
> x86/amd-iommu: Move find_protection_domain to helper functions
> x86/amd-iommu: Use get_device_id and check_device where appropriate
> x86/amd-iommu: Remove iommu parameter from dma_ops_domain_alloc
> x86/amd-iommu: Move some pte allocation functions in the right section
> x86/amd-iommu: Rearrange dma_ops related functions
> x86/amd-iommu: Remove support for domain sharing
> x86/amd-iommu: Use dev->arch->iommu to store iommu related information
> x86/amd-iommu: Add device bind reference counting
> x86/amd-iommu: Keep devices per domain in a list
> x86/amd-iommu: Cleanup attach/detach_device code
> x86/amd-iommu: Introduce iommu_flush_device() function
> x86/amd-iommu: Cleanup DTE flushing code
> x86/amd-iommu: Move reset_iommu_command_buffer out of locked code
> x86/amd-iommu: Remove amd_iommu_pd_table
> Merge branch 'gart/fixes' into amd-iommu/2.6.33
>
> Pavel Vasilyev (1):
> agp/amd64: Remove GART dependency on AGP_AMD64
>
> arch/x86/include/asm/amd_iommu.h | 12 +-
> arch/x86/include/asm/amd_iommu_proto.h | 38 +
> arch/x86/include/asm/amd_iommu_types.h | 54 ++-
> arch/x86/include/asm/device.h | 2 +-
> arch/x86/kernel/amd_iommu.c | 1230 +++++++++++++++++---------------
> arch/x86/kernel/amd_iommu_init.c | 67 +-
> drivers/char/agp/Kconfig | 3 +-
> 7 files changed, 777 insertions(+), 629 deletions(-)
> create mode 100644 arch/x86/include/asm/amd_iommu_proto.h
>
> Most of the changes are for AMD IOMMU driver. The changes there are
> bigger than usual because I did a lot of changes to the data
> structures storing the relations between devices, protection domains
> and iommus. A major change is that the amd_iommu_pd_table is now gone
> and replaced by a struct iommu_dev_data for each device stored in
> dev->archdata->iommu. These changes result in a more robust reference
> counting, especially for devices with an alias and simplified code in
> many places. Also included are some related cleanups which separated
> the internal function prototypes to a several header and code movement
> to get rid of most function forward declarations. Please pull.
Pulled into tip:core/iommu - thanks a lot Joerg!
Ingo
prev parent reply other threads:[~2009-11-27 19:27 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-27 13:55 [git pull] IOMMU updates for 2.6.33 Joerg Roedel
2009-11-27 13:55 ` [PATCH 01/34] x86/amd-iommu: Separate internal interface definitions Joerg Roedel
2009-11-27 13:55 ` [PATCH 02/34] x86/amd-iommu: Update copyright headers Joerg Roedel
2009-11-27 13:55 ` [PATCH 03/34] x86/amd-iommu: Add an index field to struct amd_iommu Joerg Roedel
2009-11-27 13:55 ` [PATCH 04/34] x86/amd-iommu: Add per IOMMU reference counting Joerg Roedel
2009-11-27 13:55 ` [PATCH 05/34] x86/amd-iommu: Add function to complete a tlb flush Joerg Roedel
2009-11-27 13:55 ` [PATCH 06/34] x86/amd-iommu: Make iommu_flush_pages aware of multiple IOMMUs Joerg Roedel
2009-11-27 13:55 ` [PATCH 07/34] x86/amd-iommu: Use __iommu_flush_pages for tlb flushes Joerg Roedel
2009-11-27 13:55 ` [PATCH 08/34] x86/amd-iommu: Remove iommu_flush_domain function Joerg Roedel
2009-11-27 13:55 ` [PATCH 09/34] x86/amd-iommu: Implement protection domain list Joerg Roedel
2009-11-27 13:55 ` [PATCH 10/34] x86/amd-iommu: Reimplement amd_iommu_flush_all_domains() Joerg Roedel
2009-11-27 13:55 ` [PATCH 11/34] x86/amd-iommu: Reimplement flush_all_domains_on_iommu() Joerg Roedel
2009-11-27 13:55 ` [PATCH 12/34] x86/amd-iommu: Make np-cache a global flag Joerg Roedel
2009-11-27 13:55 ` [PATCH 13/34] x86/amd-iommu: Use check_device for amd_iommu_dma_supported Joerg Roedel
2009-11-27 13:55 ` [PATCH 14/34] x86/amd-iommu: Use check_device in get_device_resources Joerg Roedel
2009-11-27 13:55 ` [PATCH 15/34] x86/amd-iommu: Remove iommu parameter from dma_ops_domain_(un)map Joerg Roedel
2009-11-27 13:55 ` [PATCH 16/34] x86/amd-iommu: Make alloc_new_range aware of multiple IOMMUs Joerg Roedel
2009-11-27 13:55 ` [PATCH 17/34] x86/amd-iommu: Remove iommu parameter from __(un)map_single Joerg Roedel
2009-11-27 13:55 ` [PATCH 18/34] x86/amd-iommu: Remove iommu specific handling from dma_ops path Joerg Roedel
2009-11-27 13:55 ` [PATCH 19/34] x86/amd-iommu: Let domain_for_device handle aliases Joerg Roedel
2009-11-27 13:55 ` [PATCH 20/34] x86/amd-iommu: Simplify get_device_resources() Joerg Roedel
2009-11-27 13:55 ` [PATCH 21/34] x86/amd-iommu: Move find_protection_domain to helper functions Joerg Roedel
2009-11-27 13:55 ` [PATCH 22/34] x86/amd-iommu: Use get_device_id and check_device where appropriate Joerg Roedel
2009-11-27 13:55 ` [PATCH 23/34] x86/amd-iommu: Remove iommu parameter from dma_ops_domain_alloc Joerg Roedel
2009-11-27 13:55 ` [PATCH 24/34] x86/amd-iommu: Move some pte allocation functions in the right section Joerg Roedel
2009-11-27 13:55 ` [PATCH 25/34] x86/amd-iommu: Rearrange dma_ops related functions Joerg Roedel
2009-11-27 13:55 ` [PATCH 26/34] x86/amd-iommu: Remove support for domain sharing Joerg Roedel
2009-11-27 13:55 ` [PATCH 27/34] x86/amd-iommu: Use dev->arch->iommu to store iommu related information Joerg Roedel
2009-11-27 13:55 ` [PATCH 28/34] x86/amd-iommu: Add device bind reference counting Joerg Roedel
2009-11-27 13:55 ` [PATCH 29/34] x86/amd-iommu: Keep devices per domain in a list Joerg Roedel
2009-11-27 13:55 ` [PATCH 30/34] x86/amd-iommu: Cleanup attach/detach_device code Joerg Roedel
2009-11-27 13:55 ` [PATCH 31/34] x86/amd-iommu: Introduce iommu_flush_device() function Joerg Roedel
2009-11-27 13:55 ` [PATCH 32/34] x86/amd-iommu: Cleanup DTE flushing code Joerg Roedel
2009-11-27 13:55 ` [PATCH 33/34] x86/amd-iommu: Move reset_iommu_command_buffer out of locked code Joerg Roedel
2009-11-27 13:55 ` [PATCH 34/34] x86/amd-iommu: Remove amd_iommu_pd_table Joerg Roedel
2009-11-27 19:27 ` Ingo Molnar [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20091127192749.GA26676@elte.hu \
--to=mingo@elte.hu \
--cc=iommu@lists.linux-foundation.org \
--cc=joerg.roedel@amd.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox