From: Andrew Morton <akpm@linux-foundation.org>
To: David Daney <ddaney@caviumnetworks.com>
Cc: ralf@linux-mips.org, torvalds@linux-foundation.org,
linux-mips@linux-mips.org, linux-kernel@vger.kernel.org,
ddaney@caviumnetworks.com
Subject: Re: [PATCH 1/2] MIPS: Octeon: Add hardware RNG platform device.
Date: Mon, 10 Aug 2009 15:35:03 -0700 [thread overview]
Message-ID: <20090810153503.07dee9c4.akpm@linux-foundation.org> (raw)
In-Reply-To: <1249929025-29625-1-git-send-email-ddaney@caviumnetworks.com>
On Mon, 10 Aug 2009 11:30:24 -0700
David Daney <ddaney@caviumnetworks.com> wrote:
> Add a platform device for the Octeon Random Number Generator (RNG).
>
> ...
>
> device_initcall(octeon_cf_device_init);
> +
> +/* Octeon Random Number Generator. */
> +static int __init octeon_rng_device_init(void)
> +{
> + struct platform_device *pd;
> + struct resource rng_resources[2];
> + unsigned int res_count;
> + int ret = 0;
> +
> + memset(rng_resources, 0, sizeof(rng_resources));
> + res_count = 0;
> + rng_resources[res_count].flags = IORESOURCE_MEM;
> + rng_resources[res_count].start = XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS);
> + rng_resources[res_count].end = rng_resources[res_count].start + 0xf;
> + res_count++;
> +
> + rng_resources[res_count].flags = IORESOURCE_MEM;
> + rng_resources[res_count].start = cvmx_build_io_address(8, 0);
> + rng_resources[res_count].end = rng_resources[res_count].start + 0x7;
> + res_count++;
You could do
strut resource rng_resources[2] = {
{
.flags = IORESOURCE_MEM,
.start = XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS),
{etc}
here.
> + pd = platform_device_alloc("octeon_rng", -1);
> + if (!pd) {
> + ret = -ENOMEM;
> + goto out;
> + }
> +
> + ret = platform_device_add_resources(pd, rng_resources, res_count);
use ARRAY_SIZE() here.
> + if (ret)
> + goto fail;
> +
> + ret = platform_device_add(pd);
> + if (ret)
> + goto fail;
> +
> + return ret;
> +fail:
> + platform_device_put(pd);
> +
> +out:
> + return ret;
> +}
Or not bother ;) It doesn't make any difference.
> --- /dev/null
> +++ b/arch/mips/include/asm/octeon/cvmx-rnm-defs.h
>
> ...
>
> + uint64_t u64;
>
> ...
>
This file should include types.h (at least).
WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@linux-foundation.org>
To: David Daney <ddaney@caviumnetworks.com>
Cc: ralf@linux-mips.org, torvalds@linux-foundation.org,
linux-mips@linux-mips.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] MIPS: Octeon: Add hardware RNG platform device.
Date: Mon, 10 Aug 2009 15:35:03 -0700 [thread overview]
Message-ID: <20090810153503.07dee9c4.akpm@linux-foundation.org> (raw)
Message-ID: <20090810223503.8oD0V2gbcz3B_C1BmimYsGp8GdHjbyvA7lGPbs6i_1E@z> (raw)
In-Reply-To: <1249929025-29625-1-git-send-email-ddaney@caviumnetworks.com>
On Mon, 10 Aug 2009 11:30:24 -0700
David Daney <ddaney@caviumnetworks.com> wrote:
> Add a platform device for the Octeon Random Number Generator (RNG).
>
> ...
>
> device_initcall(octeon_cf_device_init);
> +
> +/* Octeon Random Number Generator. */
> +static int __init octeon_rng_device_init(void)
> +{
> + struct platform_device *pd;
> + struct resource rng_resources[2];
> + unsigned int res_count;
> + int ret = 0;
> +
> + memset(rng_resources, 0, sizeof(rng_resources));
> + res_count = 0;
> + rng_resources[res_count].flags = IORESOURCE_MEM;
> + rng_resources[res_count].start = XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS);
> + rng_resources[res_count].end = rng_resources[res_count].start + 0xf;
> + res_count++;
> +
> + rng_resources[res_count].flags = IORESOURCE_MEM;
> + rng_resources[res_count].start = cvmx_build_io_address(8, 0);
> + rng_resources[res_count].end = rng_resources[res_count].start + 0x7;
> + res_count++;
You could do
strut resource rng_resources[2] = {
{
.flags = IORESOURCE_MEM,
.start = XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS),
{etc}
here.
> + pd = platform_device_alloc("octeon_rng", -1);
> + if (!pd) {
> + ret = -ENOMEM;
> + goto out;
> + }
> +
> + ret = platform_device_add_resources(pd, rng_resources, res_count);
use ARRAY_SIZE() here.
> + if (ret)
> + goto fail;
> +
> + ret = platform_device_add(pd);
> + if (ret)
> + goto fail;
> +
> + return ret;
> +fail:
> + platform_device_put(pd);
> +
> +out:
> + return ret;
> +}
Or not bother ;) It doesn't make any difference.
> --- /dev/null
> +++ b/arch/mips/include/asm/octeon/cvmx-rnm-defs.h
>
> ...
>
> + uint64_t u64;
>
> ...
>
This file should include types.h (at least).
next prev parent reply other threads:[~2009-08-10 22:35 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-10 18:21 [PATCH 0/2] New hardware RNG for Octeon SOCs David Daney
2009-08-10 18:30 ` [PATCH 1/2] MIPS: Octeon: Add hardware RNG platform device David Daney
2009-08-10 22:35 ` Andrew Morton [this message]
2009-08-10 22:35 ` Andrew Morton
2009-08-10 18:30 ` [PATCH 2/2] hw_random: Add hardware RNG for Octeon SOCs David Daney
2009-08-10 22:35 ` Andrew Morton
2009-08-10 22:35 ` Andrew Morton
2009-08-10 19:54 ` [PATCH 0/2] New " Matt Mackall
2009-08-10 19:57 ` David Daney
2009-08-10 20:18 ` [PATCH] MAINTAINERS: Add Matt Mackall and Herbert Xu to HARDWARE RANDOM NUMBER GENERATOR Joe Perches
2009-08-10 22:34 ` [PATCH 0/2] New hardware RNG for Octeon SOCs Andrew Morton
-- strict thread matches above, loose matches on Subject: below --
2009-08-20 21:07 [PATCH 0/2] New hardware RNG for Octeon SOCs (v2) David Daney
2009-08-20 21:10 ` [PATCH 1/2] MIPS: Octeon: Add hardware RNG platform device David Daney
2009-08-24 7:47 ` Herbert Xu
2009-08-27 14:55 ` 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=20090810153503.07dee9c4.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=ddaney@caviumnetworks.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=ralf@linux-mips.org \
--cc=torvalds@linux-foundation.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.