From: John Crispin <john@phrozen.org>
To: linux-mips@linux-mips.org
Subject: Re: [PATCH] MIPS: Add P5600 PRid and probe support
Date: Tue, 21 Jan 2014 17:52:41 +0100 [thread overview]
Message-ID: <52DEA5D9.2000904@phrozen.org> (raw)
In-Reply-To: <1390315820-15723-1-git-send-email-james.hogan@imgtec.com>
Hi,
> Add a Processor ID for the P5600 core and a case in cpu_probe_mips() for
> it. The cputype is set to CPU_PROAPTIV for now as it is in the same
> range of cores as proAptiv and doesn't currently need to be
> distinguished from it in the kernel.
The "currently" in that sentence tells me that you expect there to be a
need to distinguish it in future ?
If this is the case, then the code should be added now rather than
correcting the code later.
I immediately had to think of the 1074k vs 74k patch that is in
linux-mti-3.10 and was posted a few days ago.
John
> Signed-off-by: James Hogan <james.hogan@imgtec.com>
> Cc: Ralf Baechle <ralf@linux-mips.org>
> Cc: linux-mips@linux-mips.org
> ---
> arch/mips/include/asm/cpu.h | 1 +
> arch/mips/kernel/cpu-probe.c | 4 ++++
> 2 files changed, 5 insertions(+)
>
> diff --git a/arch/mips/include/asm/cpu.h b/arch/mips/include/asm/cpu.h
> index 76411df3d971..b69e7306cdb1 100644
> --- a/arch/mips/include/asm/cpu.h
> +++ b/arch/mips/include/asm/cpu.h
> @@ -115,6 +115,7 @@
> #define PRID_IMP_INTERAPTIV_MP 0xa100
> #define PRID_IMP_PROAPTIV_UP 0xa200
> #define PRID_IMP_PROAPTIV_MP 0xa300
> +#define PRID_IMP_P5600 0xa800
>
> /*
> * These are the PRID's for when 23:16 == PRID_COMP_SIBYTE
> diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
> index 530f832de02c..7bf4634ff045 100644
> --- a/arch/mips/kernel/cpu-probe.c
> +++ b/arch/mips/kernel/cpu-probe.c
> @@ -825,6 +825,10 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
> c->cputype = CPU_PROAPTIV;
> __cpu_name[cpu] = "MIPS proAptiv (multi)";
> break;
> + case PRID_IMP_P5600:
> + c->cputype = CPU_PROAPTIV;
> + __cpu_name[cpu] = "MIPS P5600";
> + break;
> }
>
> decode_configs(c);
next prev parent reply other threads:[~2014-01-21 16:53 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-21 14:50 [PATCH] MIPS: Add P5600 PRid and probe support James Hogan
2014-01-21 14:50 ` James Hogan
2014-01-21 16:52 ` John Crispin [this message]
2014-01-21 17:13 ` James Hogan
2014-01-21 17:13 ` James Hogan
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=52DEA5D9.2000904@phrozen.org \
--to=john@phrozen.org \
--cc=linux-mips@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.