[linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-12 Thread Abhishek Paliwal
These patches cover basic OCTEONIII support.

Abhishek Paliwal (9):
  MIPS OCTEON Add OCTEON3 to get cpu type
  MIPS OCTEON Enable use of FPU
  MIPS Add function get ebase cpunum
  MIPS Add minimal support for OCTEON3 to c-r4k.c
  MIPS donot build fast TLB refill handler with 32-bit kernels.
  MIPS Override assembler ISA for kernel FPU instruction.
  MIPS: Octeon: Implement the core-16057 workaround
  MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
  MIPS:OCTEON: More OCTEONIII support

 arch/mips/Makefile |   7 +
 arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
 arch/mips/cavium-octeon/setup.c|  12 +-
 arch/mips/include/asm/cpu-type.h   |   1 +
 .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
 .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
 arch/mips/include/asm/mipsregs.h   |   8 +
 arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 +
 arch/mips/include/asm/r4kcache.h   |   2 +
 arch/mips/kernel/Makefile  |   2 +-
 arch/mips/kernel/branch.c  |   6 +-
 arch/mips/kernel/cpu-probe.c   |   2 +-
 arch/mips/kernel/octeon_switch.S   |  85 +++-
 arch/mips/kernel/ptrace.c  |  24 +-
 arch/mips/kernel/ptrace32.c|  12 +-
 arch/mips/kernel/r4k_switch.S  |   3 +
 arch/mips/math-emu/cp1emu.c|  12 +-
 arch/mips/mm/c-r4k.c   |  47 +-
 arch/mips/mm/tlbex.c   |   8 +-
 19 files changed, 798 insertions(+), 48 deletions(-)
 create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h

--
1.8.1.4



"DISCLAIMER: This message is proprietary to Aricent and is intended solely for 
the use of the individual to whom it is addressed. It may contain privileged or 
confidential information and should not be circulated or used for any purpose 
other than for what it is intended. If you have received this message in error, 
please notify the originator immediately. If you are not the intended 
recipient, you are notified that you are strictly prohibited from using, 
copying, altering, or disclosing the contents of this message. Aricent accepts 
no responsibility for loss or damage arising from the use of the information 
transmitted by this email including damage from virus."
-- 
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


[linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-23 Thread Chandrakala Chavva
From: Abhishek Paliwal 

These patches cover basic OCTEONIII support.

Abhishek Paliwal (9):
  MIPS OCTEON Add OCTEON3 to get cpu type
  MIPS OCTEON Enable use of FPU
  MIPS Add function get ebase cpunum
  MIPS Add minimal support for OCTEON3 to c-r4k.c
  MIPS donot build fast TLB refill handler with 32-bit kernels.
  MIPS Override assembler ISA for kernel FPU instruction.
  MIPS: Octeon: Implement the core-16057 workaround
  MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
  MIPS:OCTEON: More OCTEONIII support

 arch/mips/Makefile |   7 +
 arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
 arch/mips/cavium-octeon/setup.c|  12 +-
 arch/mips/include/asm/cpu-type.h   |   1 +
 .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
 .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
 arch/mips/include/asm/mipsregs.h   |   8 +
 arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 +
 arch/mips/include/asm/r4kcache.h   |   2 +
 arch/mips/kernel/Makefile  |   2 +-
 arch/mips/kernel/branch.c  |   6 +-
 arch/mips/kernel/cpu-probe.c   |   2 +-
 arch/mips/kernel/octeon_switch.S   |  85 +++-
 arch/mips/kernel/ptrace.c  |  24 +-
 arch/mips/kernel/ptrace32.c|  12 +-
 arch/mips/kernel/r4k_switch.S  |   3 +
 arch/mips/math-emu/cp1emu.c|  12 +-
 arch/mips/mm/c-r4k.c   |  47 +-
 arch/mips/mm/tlbex.c   |   8 +-
 19 files changed, 798 insertions(+), 48 deletions(-)
 create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h

-- 
1.8.1.4

-- 
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-14 Thread akuster808

Abhishek,

What branch is this meant for?


I don't know if the 'Disclaimer' in your email will be an issue for 
Yocto. I will let someone with higher authority to respond.


- Armin


On 01/12/2015 02:41 AM, Abhishek Paliwal wrote:

These patches cover basic OCTEONIII support.

Abhishek Paliwal (9):
   MIPS OCTEON Add OCTEON3 to get cpu type
   MIPS OCTEON Enable use of FPU
   MIPS Add function get ebase cpunum
   MIPS Add minimal support for OCTEON3 to c-r4k.c
   MIPS donot build fast TLB refill handler with 32-bit kernels.
   MIPS Override assembler ISA for kernel FPU instruction.
   MIPS: Octeon: Implement the core-16057 workaround
   MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
   MIPS:OCTEON: More OCTEONIII support

  arch/mips/Makefile |   7 +
  arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
  arch/mips/cavium-octeon/setup.c|  12 +-
  arch/mips/include/asm/cpu-type.h   |   1 +
  .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
  .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
  arch/mips/include/asm/mipsregs.h   |   8 +
  arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 +
  arch/mips/include/asm/r4kcache.h   |   2 +
  arch/mips/kernel/Makefile  |   2 +-
  arch/mips/kernel/branch.c  |   6 +-
  arch/mips/kernel/cpu-probe.c   |   2 +-
  arch/mips/kernel/octeon_switch.S   |  85 +++-
  arch/mips/kernel/ptrace.c  |  24 +-
  arch/mips/kernel/ptrace32.c|  12 +-
  arch/mips/kernel/r4k_switch.S  |   3 +
  arch/mips/math-emu/cp1emu.c|  12 +-
  arch/mips/mm/c-r4k.c   |  47 +-
  arch/mips/mm/tlbex.c   |   8 +-
  19 files changed, 798 insertions(+), 48 deletions(-)
  create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h

--
1.8.1.4



"DISCLAIMER: This message is proprietary to Aricent and is intended solely for the 
use of the individual to whom it is addressed. It may contain privileged or confidential 
information and should not be circulated or used for any purpose other than for what it 
is intended. If you have received this message in error, please notify the originator 
immediately. If you are not the intended recipient, you are notified that you are 
strictly prohibited from using, copying, altering, or disclosing the contents of this 
message. Aricent accepts no responsibility for loss or damage arising from the use of the 
information transmitted by this email including damage from virus."


--
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-14 Thread Bruce Ashfield

On 2015-01-12 5:41 AM, Abhishek Paliwal wrote:

These patches cover basic OCTEONIII support.


Hi Abhishek,

The changes all look sane to me (in particular the upstream
backports are easy to integrate).

But the big question is .. what linux-yocto variant is this for ?
We have a few choices: 3.10, 3.14 or 3.17 at the moment. I could
figure it out by seeing where your upstream commits land in the
kernel history, but I'd rather ask and see your response.

And finally, can you elaborate on a particular OcteonIII board that
is known to work with this series applied ?

Bruce



Abhishek Paliwal (9):
   MIPS OCTEON Add OCTEON3 to get cpu type
   MIPS OCTEON Enable use of FPU
   MIPS Add function get ebase cpunum
   MIPS Add minimal support for OCTEON3 to c-r4k.c
   MIPS donot build fast TLB refill handler with 32-bit kernels.
   MIPS Override assembler ISA for kernel FPU instruction.
   MIPS: Octeon: Implement the core-16057 workaround
   MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
   MIPS:OCTEON: More OCTEONIII support

  arch/mips/Makefile |   7 +
  arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
  arch/mips/cavium-octeon/setup.c|  12 +-
  arch/mips/include/asm/cpu-type.h   |   1 +
  .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
  .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
  arch/mips/include/asm/mipsregs.h   |   8 +
  arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 +
  arch/mips/include/asm/r4kcache.h   |   2 +
  arch/mips/kernel/Makefile  |   2 +-
  arch/mips/kernel/branch.c  |   6 +-
  arch/mips/kernel/cpu-probe.c   |   2 +-
  arch/mips/kernel/octeon_switch.S   |  85 +++-
  arch/mips/kernel/ptrace.c  |  24 +-
  arch/mips/kernel/ptrace32.c|  12 +-
  arch/mips/kernel/r4k_switch.S  |   3 +
  arch/mips/math-emu/cp1emu.c|  12 +-
  arch/mips/mm/c-r4k.c   |  47 +-
  arch/mips/mm/tlbex.c   |   8 +-
  19 files changed, 798 insertions(+), 48 deletions(-)
  create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h

--
1.8.1.4



"DISCLAIMER: This message is proprietary to Aricent and is intended solely for the 
use of the individual to whom it is addressed. It may contain privileged or confidential 
information and should not be circulated or used for any purpose other than for what it 
is intended. If you have received this message in error, please notify the originator 
immediately. If you are not the intended recipient, you are notified that you are 
strictly prohibited from using, copying, altering, or disclosing the contents of this 
message. Aricent accepts no responsibility for loss or damage arising from the use of the 
information transmitted by this email including damage from virus."



--
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-15 Thread Abhishek Paliwal
Hi Bruce,

The changes are against 3.14 kernel on standard/base branch.
There are more patches need to be applied for booting the kernel on Octeon3. We 
are working on them and will be submitting in the upcoming weeks.

With these patches, we are targeting the CN78xx but currently we are just 
ensuring that the support for previous simulators (like CN56xx, CN68xx) are not 
broken while submitting.

Regards,
Abhishek

-Original Message-
From: Bruce Ashfield [mailto:bruce.ashfi...@windriver.com]
Sent: 15 January 2015 10:40
To: Abhishek Paliwal; linux-yocto@yoctoproject.org
Subject: Re: [PATCH 0/9] MIPS : Basic OcteonIII support.

On 2015-01-12 5:41 AM, Abhishek Paliwal wrote:
> These patches cover basic OCTEONIII support.

Hi Abhishek,

The changes all look sane to me (in particular the upstream backports are easy 
to integrate).

But the big question is .. what linux-yocto variant is this for ?
We have a few choices: 3.10, 3.14 or 3.17 at the moment. I could figure it out 
by seeing where your upstream commits land in the kernel history, but I'd 
rather ask and see your response.

And finally, can you elaborate on a particular OcteonIII board that is known to 
work with this series applied ?

Bruce

>
> Abhishek Paliwal (9):
>MIPS OCTEON Add OCTEON3 to get cpu type
>MIPS OCTEON Enable use of FPU
>MIPS Add function get ebase cpunum
>MIPS Add minimal support for OCTEON3 to c-r4k.c
>MIPS donot build fast TLB refill handler with 32-bit kernels.
>MIPS Override assembler ISA for kernel FPU instruction.
>MIPS: Octeon: Implement the core-16057 workaround
>MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
>MIPS:OCTEON: More OCTEONIII support
>
>   arch/mips/Makefile |   7 +
>   arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
>   arch/mips/cavium-octeon/setup.c|  12 +-
>   arch/mips/include/asm/cpu-type.h   |   1 +
>   .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
>   .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
>   arch/mips/include/asm/mipsregs.h   |   8 +
>   arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 
> +
>   arch/mips/include/asm/r4kcache.h   |   2 +
>   arch/mips/kernel/Makefile  |   2 +-
>   arch/mips/kernel/branch.c  |   6 +-
>   arch/mips/kernel/cpu-probe.c   |   2 +-
>   arch/mips/kernel/octeon_switch.S   |  85 +++-
>   arch/mips/kernel/ptrace.c  |  24 +-
>   arch/mips/kernel/ptrace32.c|  12 +-
>   arch/mips/kernel/r4k_switch.S  |   3 +
>   arch/mips/math-emu/cp1emu.c|  12 +-
>   arch/mips/mm/c-r4k.c   |  47 +-
>   arch/mips/mm/tlbex.c   |   8 +-
>   19 files changed, 798 insertions(+), 48 deletions(-)
>   create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h
>
> --
> 1.8.1.4
>
>
>
> "DISCLAIMER: This message is proprietary to Aricent and is intended solely 
> for the use of the individual to whom it is addressed. It may contain 
> privileged or confidential information and should not be circulated or used 
> for any purpose other than for what it is intended. If you have received this 
> message in error, please notify the originator immediately. If you are not 
> the intended recipient, you are notified that you are strictly prohibited 
> from using, copying, altering, or disclosing the contents of this message. 
> Aricent accepts no responsibility for loss or damage arising from the use of 
> the information transmitted by this email including damage from virus."
>

"DISCLAIMER: This message is proprietary to Aricent and is intended solely for 
the use of the individual to whom it is addressed. It may contain privileged or 
confidential information and should not be circulated or used for any purpose 
other than for what it is intended. If you have received this message in error, 
please notify the originator immediately. If you are not the intended 
recipient, you are notified that you are strictly prohibited from using, 
copying, altering, or disclosing the contents of this message. Aricent accepts 
no responsibility for loss or damage arising from the use of the information 
transmitted by this email including damage from virus."
-- 
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-15 Thread Abhishek Paliwal
Hi Armin,

Thanks for your feedback.
The changes are against 3.14 kernel on standard/base branch.

I'll try if 'Disclaimer' in our mail will be possible to remove.

Regards,
Abhishek

-Original Message-
From: akuster808 [mailto:akuster...@gmail.com]
Sent: 14 January 2015 21:40
To: Abhishek Paliwal; linux-yocto@yoctoproject.org
Subject: Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

Abhishek,

What branch is this meant for?


I don't know if the 'Disclaimer' in your email will be an issue for Yocto. I 
will let someone with higher authority to respond.

- Armin


On 01/12/2015 02:41 AM, Abhishek Paliwal wrote:
> These patches cover basic OCTEONIII support.
>
> Abhishek Paliwal (9):
>MIPS OCTEON Add OCTEON3 to get cpu type
>MIPS OCTEON Enable use of FPU
>MIPS Add function get ebase cpunum
>MIPS Add minimal support for OCTEON3 to c-r4k.c
>MIPS donot build fast TLB refill handler with 32-bit kernels.
>MIPS Override assembler ISA for kernel FPU instruction.
>MIPS: Octeon: Implement the core-16057 workaround
>MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
>MIPS:OCTEON: More OCTEONIII support
>
>   arch/mips/Makefile |   7 +
>   arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
>   arch/mips/cavium-octeon/setup.c|  12 +-
>   arch/mips/include/asm/cpu-type.h   |   1 +
>   .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
>   .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
>   arch/mips/include/asm/mipsregs.h   |   8 +
>   arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 
> +
>   arch/mips/include/asm/r4kcache.h   |   2 +
>   arch/mips/kernel/Makefile  |   2 +-
>   arch/mips/kernel/branch.c  |   6 +-
>   arch/mips/kernel/cpu-probe.c   |   2 +-
>   arch/mips/kernel/octeon_switch.S   |  85 +++-
>   arch/mips/kernel/ptrace.c  |  24 +-
>   arch/mips/kernel/ptrace32.c|  12 +-
>   arch/mips/kernel/r4k_switch.S  |   3 +
>   arch/mips/math-emu/cp1emu.c|  12 +-
>   arch/mips/mm/c-r4k.c   |  47 +-
>   arch/mips/mm/tlbex.c   |   8 +-
>   19 files changed, 798 insertions(+), 48 deletions(-)
>   create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h
>
> --
> 1.8.1.4
>
>
>
> "DISCLAIMER: This message is proprietary to Aricent and is intended solely 
> for the use of the individual to whom it is addressed. It may contain 
> privileged or confidential information and should not be circulated or used 
> for any purpose other than for what it is intended. If you have received this 
> message in error, please notify the originator immediately. If you are not 
> the intended recipient, you are notified that you are strictly prohibited 
> from using, copying, altering, or disclosing the contents of this message. 
> Aricent accepts no responsibility for loss or damage arising from the use of 
> the information transmitted by this email including damage from virus."
>
"DISCLAIMER: This message is proprietary to Aricent and is intended solely for 
the use of the individual to whom it is addressed. It may contain privileged or 
confidential information and should not be circulated or used for any purpose 
other than for what it is intended. If you have received this message in error, 
please notify the originator immediately. If you are not the intended 
recipient, you are notified that you are strictly prohibited from using, 
copying, altering, or disclosing the contents of this message. Aricent accepts 
no responsibility for loss or damage arising from the use of the information 
transmitted by this email including damage from virus."
-- 
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-16 Thread Bruce Ashfield

On 15-01-16 01:54 AM, Abhishek Paliwal wrote:

Hi Bruce,

The changes are against 3.14 kernel on standard/base branch.
There are more patches need to be applied for booting the kernel on Octeon3. We 
are working on them and will be submitting in the upcoming weeks.

With these patches, we are targeting the CN78xx but currently we are just 
ensuring that the support for previous simulators (like CN56xx, CN68xx) are not 
broken while submitting.



Great. Thanks for the context. I'll be applying these to the tree
early next week .. since we are nearly done fighting some kernel
build issues in master.

Bruce


Regards,
Abhishek

-Original Message-
From: Bruce Ashfield [mailto:bruce.ashfi...@windriver.com]
Sent: 15 January 2015 10:40
To: Abhishek Paliwal; linux-yocto@yoctoproject.org
Subject: Re: [PATCH 0/9] MIPS : Basic OcteonIII support.

On 2015-01-12 5:41 AM, Abhishek Paliwal wrote:

These patches cover basic OCTEONIII support.


Hi Abhishek,

The changes all look sane to me (in particular the upstream backports are easy 
to integrate).

But the big question is .. what linux-yocto variant is this for ?
We have a few choices: 3.10, 3.14 or 3.17 at the moment. I could figure it out 
by seeing where your upstream commits land in the kernel history, but I'd 
rather ask and see your response.

And finally, can you elaborate on a particular OcteonIII board that is known to 
work with this series applied ?

Bruce



Abhishek Paliwal (9):
MIPS OCTEON Add OCTEON3 to get cpu type
MIPS OCTEON Enable use of FPU
MIPS Add function get ebase cpunum
MIPS Add minimal support for OCTEON3 to c-r4k.c
MIPS donot build fast TLB refill handler with 32-bit kernels.
MIPS Override assembler ISA for kernel FPU instruction.
MIPS: Octeon: Implement the core-16057 workaround
MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
MIPS:OCTEON: More OCTEONIII support

   arch/mips/Makefile |   7 +
   arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
   arch/mips/cavium-octeon/setup.c|  12 +-
   arch/mips/include/asm/cpu-type.h   |   1 +
   .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
   .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
   arch/mips/include/asm/mipsregs.h   |   8 +
   arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 
+
   arch/mips/include/asm/r4kcache.h   |   2 +
   arch/mips/kernel/Makefile  |   2 +-
   arch/mips/kernel/branch.c  |   6 +-
   arch/mips/kernel/cpu-probe.c   |   2 +-
   arch/mips/kernel/octeon_switch.S   |  85 +++-
   arch/mips/kernel/ptrace.c  |  24 +-
   arch/mips/kernel/ptrace32.c|  12 +-
   arch/mips/kernel/r4k_switch.S  |   3 +
   arch/mips/math-emu/cp1emu.c|  12 +-
   arch/mips/mm/c-r4k.c   |  47 +-
   arch/mips/mm/tlbex.c   |   8 +-
   19 files changed, 798 insertions(+), 48 deletions(-)
   create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h

--
1.8.1.4



"DISCLAIMER: This message is proprietary to Aricent and is intended solely for the 
use of the individual to whom it is addressed. It may contain privileged or confidential 
information and should not be circulated or used for any purpose other than for what it 
is intended. If you have received this message in error, please notify the originator 
immediately. If you are not the intended recipient, you are notified that you are 
strictly prohibited from using, copying, altering, or disclosing the contents of this 
message. Aricent accepts no responsibility for loss or damage arising from the use of the 
information transmitted by this email including damage from virus."



"DISCLAIMER: This message is proprietary to Aricent and is intended solely for the 
use of the individual to whom it is addressed. It may contain privileged or confidential 
information and should not be circulated or used for any purpose other than for what it 
is intended. If you have received this message in error, please notify the originator 
immediately. If you are not the intended recipient, you are notified that you are 
strictly prohibited from using, copying, altering, or disclosing the contents of this 
message. Aricent accepts no responsibility for loss or damage arising from the use of the 
information transmitted by this email including damage from virus."



--
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-21 Thread Bruce Ashfield

On 15-01-16 01:56 AM, Abhishek Paliwal wrote:

Hi Armin,

Thanks for your feedback.
The changes are against 3.14 kernel on standard/base branch.


After some delays, I'm updating all the linux-yocto kernel for -stable
and pending patches.

When I tried to apply this queue, I got rejects in the first two patches,
so I stopped trying to fix the rejects and am asking here.

I have linux-yocto 3.14 at 3.14.29 (under build testing), can someone
confirm that these patches will apply cleanly to that baseline ?

Bruce



I'll try if 'Disclaimer' in our mail will be possible to remove.

Regards,
Abhishek

-Original Message-
From: akuster808 [mailto:akuster...@gmail.com]
Sent: 14 January 2015 21:40
To: Abhishek Paliwal; linux-yocto@yoctoproject.org
Subject: Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

Abhishek,

What branch is this meant for?


I don't know if the 'Disclaimer' in your email will be an issue for Yocto. I 
will let someone with higher authority to respond.

- Armin


On 01/12/2015 02:41 AM, Abhishek Paliwal wrote:

These patches cover basic OCTEONIII support.

Abhishek Paliwal (9):
MIPS OCTEON Add OCTEON3 to get cpu type
MIPS OCTEON Enable use of FPU
MIPS Add function get ebase cpunum
MIPS Add minimal support for OCTEON3 to c-r4k.c
MIPS donot build fast TLB refill handler with 32-bit kernels.
MIPS Override assembler ISA for kernel FPU instruction.
MIPS: Octeon: Implement the core-16057 workaround
MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
MIPS:OCTEON: More OCTEONIII support

   arch/mips/Makefile |   7 +
   arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
   arch/mips/cavium-octeon/setup.c|  12 +-
   arch/mips/include/asm/cpu-type.h   |   1 +
   .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
   .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
   arch/mips/include/asm/mipsregs.h   |   8 +
   arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 
+
   arch/mips/include/asm/r4kcache.h   |   2 +
   arch/mips/kernel/Makefile  |   2 +-
   arch/mips/kernel/branch.c  |   6 +-
   arch/mips/kernel/cpu-probe.c   |   2 +-
   arch/mips/kernel/octeon_switch.S   |  85 +++-
   arch/mips/kernel/ptrace.c  |  24 +-
   arch/mips/kernel/ptrace32.c|  12 +-
   arch/mips/kernel/r4k_switch.S  |   3 +
   arch/mips/math-emu/cp1emu.c|  12 +-
   arch/mips/mm/c-r4k.c   |  47 +-
   arch/mips/mm/tlbex.c   |   8 +-
   19 files changed, 798 insertions(+), 48 deletions(-)
   create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h

--
1.8.1.4



"DISCLAIMER: This message is proprietary to Aricent and is intended solely for the 
use of the individual to whom it is addressed. It may contain privileged or confidential 
information and should not be circulated or used for any purpose other than for what it 
is intended. If you have received this message in error, please notify the originator 
immediately. If you are not the intended recipient, you are notified that you are 
strictly prohibited from using, copying, altering, or disclosing the contents of this 
message. Aricent accepts no responsibility for loss or damage arising from the use of the 
information transmitted by this email including damage from virus."


"DISCLAIMER: This message is proprietary to Aricent and is intended solely for the 
use of the individual to whom it is addressed. It may contain privileged or confidential 
information and should not be circulated or used for any purpose other than for what it 
is intended. If you have received this message in error, please notify the originator 
immediately. If you are not the intended recipient, you are notified that you are 
strictly prohibited from using, copying, altering, or disclosing the contents of this 
message. Aricent accepts no responsibility for loss or damage arising from the use of the 
information transmitted by this email including damage from virus."



--
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 0/9] MIPS : Basic OcteonIII support.

2015-01-26 Thread Bruce Ashfield

On 15-01-23 12:53 PM, Chandrakala Chavva wrote:

From: Abhishek Paliwal 



Thanks. These applied to the 3.14 linux-yocto tree nicely. I've
queued them, and am doing build tests. Once those complete, they'll
be pushed out to the servers.

Bruce



These patches cover basic OCTEONIII support.

Abhishek Paliwal (9):
   MIPS OCTEON Add OCTEON3 to get cpu type
   MIPS OCTEON Enable use of FPU
   MIPS Add function get ebase cpunum
   MIPS Add minimal support for OCTEON3 to c-r4k.c
   MIPS donot build fast TLB refill handler with 32-bit kernels.
   MIPS Override assembler ISA for kernel FPU instruction.
   MIPS: Octeon: Implement the core-16057 workaround
   MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
   MIPS:OCTEON: More OCTEONIII support

  arch/mips/Makefile |   7 +
  arch/mips/cavium-octeon/csrc-octeon.c  |   7 +
  arch/mips/cavium-octeon/setup.c|  12 +-
  arch/mips/include/asm/cpu-type.h   |   1 +
  .../asm/mach-cavium-octeon/cpu-feature-overrides.h |   1 -
  .../asm/mach-cavium-octeon/kernel-entry-init.h |  43 +-
  arch/mips/include/asm/mipsregs.h   |   8 +
  arch/mips/include/asm/octeon/cvmx-rst-defs.h   | 564 +
  arch/mips/include/asm/r4kcache.h   |   2 +
  arch/mips/kernel/Makefile  |   2 +-
  arch/mips/kernel/branch.c  |   6 +-
  arch/mips/kernel/cpu-probe.c   |   2 +-
  arch/mips/kernel/octeon_switch.S   |  85 +++-
  arch/mips/kernel/ptrace.c  |  24 +-
  arch/mips/kernel/ptrace32.c|  12 +-
  arch/mips/kernel/r4k_switch.S  |   3 +
  arch/mips/math-emu/cp1emu.c|  12 +-
  arch/mips/mm/c-r4k.c   |  47 +-
  arch/mips/mm/tlbex.c   |   8 +-
  19 files changed, 798 insertions(+), 48 deletions(-)
  create mode 100644 arch/mips/include/asm/octeon/cvmx-rst-defs.h



--
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto