All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sergei Shtylyov <sshtylyov@ru.mvista.com>
To: Maxime Bizon <mbizon@freebox.fr>
Cc: linux-mips@linux-mips.org, ralf@linux-mips.org
Subject: Re: [PATCH 1/7] MIPS: bcm63xx: register integrated OHCI controller device.
Date: Sun, 31 Jan 2010 16:13:29 +0300	[thread overview]
Message-ID: <4B6581F9.8080901@ru.mvista.com> (raw)
In-Reply-To: <1264872898-28149-2-git-send-email-mbizon@freebox.fr>

Hello.

Maxime Bizon wrote:

> The bcm63xx SOC has an integrated OHCI controller, this patch adds
> platform device registration and change board code to register ohci
> device when necessary.
>
> Signed-off-by: Maxime Bizon <mbizon@freebox.fr>
>   

[...]

> diff --git a/arch/mips/bcm63xx/dev-usb-ohci.c b/arch/mips/bcm63xx/dev-usb-ohci.c
> new file mode 100644
> index 0000000..f1fb442
> --- /dev/null
> +++ b/arch/mips/bcm63xx/dev-usb-ohci.c
> @@ -0,0 +1,49 @@
> +/*
> + * This file is subject to the terms and conditions of the GNU General Public
> + * License.  See the file "COPYING" in the main directory of this archive
> + * for more details.
> + *
> + * Copyright (C) 2010 Maxime Bizon <mbizon@freebox.fr>
> + */
> +
> +#include <linux/init.h>
> +#include <linux/kernel.h>
> +#include <linux/platform_device.h>
> +#include <bcm63xx_cpu.h>
> +#include <bcm63xx_dev_usb_ohci.h>
> +
> +static struct resource ohci_resources[] = {
> +	{
> +		/* start & end filled at runtime */
> +		.flags		= IORESOURCE_MEM,
> +	},
> +	{
> +		/* start filled at runtime */
> +		.flags		= IORESOURCE_IRQ,
> +	},
> +};
> +
> +static u64 ohci_dmamask = ~(u32)0;
>   

   Should be DMA_BIT_MASK(32).

> +
> +static struct platform_device bcm63xx_ohci_device = {
> +	.name		= "bcm63xx_ohci",
> +	.id		= 0,
> +	.num_resources	= ARRAY_SIZE(ohci_resources),
> +	.resource	= ohci_resources,
> +	.dev		= {
> +		.dma_mask		= &ohci_dmamask,
> +		.coherent_dma_mask	= 0xffffffff,
>   

   Same here...

> +	},
> +};
> +
> +int __init bcm63xx_ohci_register(void)
> +{
> +	if (!BCMCPU_IS_6348() && !BCMCPU_IS_6358())
> +		return 0;
> +
> +	ohci_resources[0].start = bcm63xx_regset_address(RSET_OHCI0);
> +	ohci_resources[0].end = ohci_resources[0].start;
> +	ohci_resources[0].end += RSET_OHCI_SIZE - 1;
>   

   Why not do it in a signle statement?

WBR, Sergei

  reply	other threads:[~2010-01-31 13:14 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-30 17:34 bcm63xx updates for 2.6.34 Maxime Bizon
2010-01-30 17:34 ` [PATCH 1/7] MIPS: bcm63xx: register integrated OHCI controller device Maxime Bizon
2010-01-31 13:13   ` Sergei Shtylyov [this message]
2010-01-30 17:34 ` [PATCH 2/7] MIPS: bcm63xx: register integrated EHCI " Maxime Bizon
2010-01-31 13:16   ` Sergei Shtylyov
2010-01-30 17:34 ` [PATCH 3/7] MIPS: bcm63xx: fix double gpio registration Maxime Bizon
2010-03-19 12:00   ` Ralf Baechle
2010-01-30 17:34 ` [PATCH 4/7] MIPS: bcm63xx: add support for second uart Maxime Bizon
2010-03-19 12:19   ` Ralf Baechle
2010-01-30 17:34 ` [PATCH 5/7] MIPS: bcm63xx: fix typo in cpu-feature-overrides file Maxime Bizon
2010-03-19 12:23   ` Ralf Baechle
2010-01-30 17:34 ` [PATCH 6/7] MIPS: bcm63xx: call board_register_device from device_initcall() Maxime Bizon
2010-03-02 13:38   ` Florian Fainelli
2010-03-19 12:47     ` Ralf Baechle
2010-03-19 12:34   ` Ralf Baechle
2010-03-19 12:44     ` Ralf Baechle
2010-01-30 17:34 ` [PATCH 7/7] MIPS: bcm63xx: initialize gpio_out_low & out_high to current value at boot Maxime Bizon
2010-03-19 13:22   ` Ralf Baechle

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=4B6581F9.8080901@ru.mvista.com \
    --to=sshtylyov@ru.mvista.com \
    --cc=linux-mips@linux-mips.org \
    --cc=mbizon@freebox.fr \
    --cc=ralf@linux-mips.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.