lkml.org 
[lkml]   [2008]   [Jul]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 19/34] AMD IOMMU: add functions to send IOMMU commands
On Wed, Jul 09, 2008 at 07:04:53PM -0700, Andrew Morton wrote:
> On Thu, 26 Jun 2008 21:27:55 +0200 Joerg Roedel <joerg.roedel@amd.com> wrote:
> > +static int iommu_completion_wait(struct amd_iommu *iommu)
> > +{
> > + int ret;
> > + struct command cmd;
> > + volatile u64 ready = 0;
> > + unsigned long ready_phys = virt_to_phys(&ready);
> > +
> > + memset(&cmd, 0, sizeof(cmd));
> > + cmd.data[0] = LOW_U32(ready_phys) | CMD_COMPL_WAIT_STORE_MASK;
> > + cmd.data[1] = HIGH_U32(ready_phys);
> > + cmd.data[2] = 1; /* value written to 'ready' */
> > + CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
> > +
> > + iommu->need_sync = 0;
> > +
> > + ret = iommu_queue_command(iommu, &cmd);
> > +
> > + if (ret)
> > + return ret;
> > +
> > + while (!ready)
> > + cpu_relax();
>
> I busywait is a big red flag. An uncommented one is not acceptable IMO.
>
> What is the maximum duration?

This depends on the hardware and how many commands have to be executed
before that command.

> Is it not possible to sleep and await an interrupt?

Yes it is. I plan to do so as an optimization to the current code. But
this needs changes to the address allocator to not allocate addresses
which have been freed but not yet flushed from the IOMMU TLB.

> Should we implement a timeout in case the hardware is busted?

This is the best I think. Ok, if the hardware is busted the whole
machine has a problem because DMA does not work reliably anymore. But I
will add a counter to that loop to have an emergency exit from it until
the optimization is implemented (which is a bit more work).

> > + return 0;
> > +}
> > +
> > +static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
> > +{
> > + struct command cmd;
>
> `command' was a poorly-chosen identifier for this structure. Too generic.

Hmm, maybe iommu_cmd. I don't want the identifier too long like
amd_iommu_command because it is only used in that file and thus its
clear that it belongs to the amd_iommu.

Joerg


--
| AMD Saxony Limited Liability Company & Co. KG
Operating | Wilschdorfer Landstr. 101, 01109 Dresden, Germany
System | Register Court Dresden: HRA 4896
Research | General Partner authorized to represent:
Center | AMD Saxony LLC (Wilmington, Delaware, US)
| General Manager of AMD Saxony LLC: Dr. Hans-R. Deppe, Thomas McCoy



\
 
 \ /
  Last update: 2008-07-10 14:57    [W:2.071 / U:0.044 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site