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 2/7] MIPS: bcm63xx: register integrated EHCI controller device.
Date: Sun, 31 Jan 2010 16:16:17 +0300 [thread overview]
Message-ID: <4B6582A1.6050708@ru.mvista.com> (raw)
In-Reply-To: <1264872898-28149-3-git-send-email-mbizon@freebox.fr>
Hello.
Maxime Bizon wrote:
> The bcm63xx SOC has an integrated EHCI controller, this patch adds
> platform device registration and change board code to register
> EHCI device when necessary.
>
> Signed-off-by: Maxime Bizon <mbizon@freebox.fr>
>
[...]
> diff --git a/arch/mips/bcm63xx/dev-usb-ehci.c b/arch/mips/bcm63xx/dev-usb-ehci.c
> new file mode 100644
> index 0000000..4bdd675
> --- /dev/null
> +++ b/arch/mips/bcm63xx/dev-usb-ehci.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_ehci.h>
> +
> +static struct resource ehci_resources[] = {
> + {
> + /* start & end filled at runtime */
> + .flags = IORESOURCE_MEM,
> + },
> + {
> + /* start filled at runtime */
> + .flags = IORESOURCE_IRQ,
> + },
> +};
> +
> +static u64 ehci_dmamask = ~(u32)0;
>
Should be DMA_BIT_MASK(32).
> +
> +static struct platform_device bcm63xx_ehci_device = {
> + .name = "bcm63xx_ehci",
> + .id = 0,
> + .num_resources = ARRAY_SIZE(ehci_resources),
> + .resource = ehci_resources,
> + .dev = {
> + .dma_mask = &ehci_dmamask,
> + .coherent_dma_mask = 0xffffffff,
>
Same here...
> + },
> +};
> +
> +int __init bcm63xx_ehci_register(void)
> +{
> + if (!BCMCPU_IS_6358())
> + return 0;
> +
> + ehci_resources[0].start = bcm63xx_regset_address(RSET_EHCI0);
> + ehci_resources[0].end = ehci_resources[0].start;
> + ehci_resources[0].end += RSET_EHCI_SIZE - 1;
>
Why not do it in a single statement? Besides you could initialize the
field with that, and then do
ehci_resources[0].end += ehci_resources[0].start;
WBR, Sergei
next prev parent reply other threads:[~2010-01-31 13:16 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
2010-01-30 17:34 ` [PATCH 2/7] MIPS: bcm63xx: register integrated EHCI " Maxime Bizon
2010-01-31 13:16 ` Sergei Shtylyov [this message]
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=4B6582A1.6050708@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.