linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Kumar Gala <galak@kernel.crashing.org>
To: Becky Bruce <beckyb@kernel.crashing.org>
Cc: fujita.tomonori@lab.ntt.co.jp, linuxppc-dev@ozlabs.org
Subject: Re: [PATCH 4/5] powerpc: Add support for swiotlb on 32-bit
Date: Mon, 20 Apr 2009 15:04:34 -0500	[thread overview]
Message-ID: <AC7EE6C5-5487-4D70-B690-2F60BE974C92@kernel.crashing.org> (raw)
In-Reply-To: <6084F3DB-F587-43EC-8753-9E116189A453@kernel.crashing.org>


On Apr 20, 2009, at 2:06 PM, Becky Bruce wrote:

>
> On Apr 20, 2009, at 1:31 PM, Kumar Gala wrote:
>
>>
>> On Apr 20, 2009, at 11:26 AM, Becky Bruce wrote:
>>
>>> +static int ppc_swiotlb_bus_notify(struct notifier_block *nb,
>>> +				  unsigned long action, void *data)
>>> +{
>>> +	struct device *dev = data;
>>> +
>>> +	/* We are only intereted in device addition */
>>> +	if (action != BUS_NOTIFY_ADD_DEVICE)
>>> +		return 0;
>>> +
>>> +	if (dma_get_mask(dev) < DMA_BIT_MASK(36))
>>> +		set_dma_ops(dev, &swiotlb_dma_ops);
>>> +
>>> +	return NOTIFY_DONE;
>>> +}
>>> +
>>> +static struct notifier_block ppc_swiotlb_plat_bus_notifier = {
>>> +	.notifier_call = ppc_swiotlb_bus_notify,
>>> +	.priority = 0,
>>> +};
>>> +
>>> +static struct notifier_block ppc_swiotlb_of_bus_notifier = {
>>> +	.notifier_call = ppc_swiotlb_bus_notify,
>>> +	.priority = 0,
>>> +};
>>> +
>>> +static int __init setup_bus_notifier(void)
>>> +{
>>> +	bus_register_notifier(&platform_bus_type,
>>> +			      &ppc_swiotlb_plat_bus_notifier);
>>> +	bus_register_notifier(&of_platform_bus_type,
>>> +			      &ppc_swiotlb_of_bus_notifier);
>>> +
>>> +	return 0;
>>> +}
>>
>> I think we should move all this into the platform code for now.  I  
>> don't like having to duplicate it but that gives us the proper  
>> flexibility for now.
>
> Ugh, gross.  I'd like to think about this some more.

I'm suggesting we do it one for FSL in fsl_soc.c, the 4xx guys can do  
it once, etc.  Since the behavior desired is going to be a bit unique  
to SoCs/chipsets.

- k

  reply	other threads:[~2009-04-20 20:04 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-20 16:26 [PATCH 0/5] SWIOTLB for ppc/mpc86xx Becky Bruce
2009-04-20 16:26 ` [PATCH 0/5] enable swiotlb on ppc/86xx Becky Bruce
2009-04-20 16:26   ` [PATCH 0/5] Allow swiotlb use on ppc/mpc86xx Becky Bruce
2009-04-20 16:26     ` [PATCH 1/5] powerpc: Use sg->dma_length in sg_dma_len() macro on 32-bit Becky Bruce
2009-04-20 16:26       ` [PATCH 2/5] powerpc: Add 36-bit device tree for mpc8641hpcn Becky Bruce
2009-04-20 16:26         ` [PATCH 3/5] powerpc: make dma_window_* in pci_controller struct avail on 32b Becky Bruce
2009-04-20 16:26           ` [PATCH 4/5] powerpc: Add support for swiotlb on 32-bit Becky Bruce
2009-04-20 16:26             ` [PATCH 5/5] powerpc: Add 86xx support for SWIOTLB Becky Bruce
2009-04-20 17:00               ` Kumar Gala
2009-04-20 17:58                 ` Becky Bruce
2009-04-21  2:14                   ` Michael Ellerman
2009-04-20 16:57             ` [PATCH 4/5] powerpc: Add support for swiotlb on 32-bit Kumar Gala
2009-04-20 18:03               ` Becky Bruce
2009-04-21  2:39                 ` FUJITA Tomonori
2009-04-20 18:31             ` Kumar Gala
2009-04-20 19:06               ` Becky Bruce
2009-04-20 20:04                 ` Kumar Gala [this message]
2009-04-20 20:16                   ` Scott Wood
2009-04-20 16:58           ` [PATCH 3/5] powerpc: make dma_window_* in pci_controller struct avail on 32b Kumar Gala
2009-04-21  1:10         ` [PATCH 2/5] powerpc: Add 36-bit device tree for mpc8641hpcn David Gibson
2009-04-21 15:33           ` Becky Bruce
2009-04-22  1:26             ` David Gibson
2009-04-21 21:11         ` Kumar Gala
2009-04-20 20:06       ` [PATCH 1/5] powerpc: Use sg->dma_length in sg_dma_len() macro on 32-bit Kumar Gala
2009-04-21  2:27         ` FUJITA Tomonori
2009-04-21 15:23         ` Becky Bruce
2009-04-20 16:29     ` [PATCH 0/5] Allow swiotlb use on ppc/mpc86xx Becky Bruce

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=AC7EE6C5-5487-4D70-B690-2F60BE974C92@kernel.crashing.org \
    --to=galak@kernel.crashing.org \
    --cc=beckyb@kernel.crashing.org \
    --cc=fujita.tomonori@lab.ntt.co.jp \
    --cc=linuxppc-dev@ozlabs.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;
as well as URLs for NNTP newsgroup(s).