CPU: Difference between revisions

From Vita Developer wiki
Jump to navigation Jump to search
(minor updates)
No edit summary
 
(10 intermediate revisions by 5 users not shown)
Line 7: Line 7:
* Designed by: ARM
* Designed by: ARM
* Common manufacturer(s): TSMC
* Common manufacturer(s): TSMC
* CPU clock rate: 800 MHz to 2000 MHz (generic spec, needs confirmation on Vita platform)
* CPU clock rate: 111 MHz to 500 MHz (Clockrate can be manually changed if the handheld is modded)
* Instruction set: ARMv7
* Instruction set: ARMv7
* Cores: 1-4
* Cores: 1-4
* L1 cache: 32 kB I/32 kB D
* L1 cache: 32 kB I/32 kB D
* L2 cache controller: (0-4 MB)
* L2 cache controller: (0-4 MB)
The actual application processor cores are [http://www.arm.com/products/processors/cortex-a/cortex-a9.php Cortex A9], which is common in modern high performance embedded devices like cell phones and tablets. The [http://infocenter.arm.com/help/topic/com.arm.doc.ddi0388i/index.html Technical Reference Manual] gives a good overview of the specific processor features and is a good reference for what ARMv7 implementation specific features are enabled. The Vita cores have a MIDR value of <code>0x412FC09A</code>, meaning it is Cortex A9 r2p10. Indeed there are usage of undocumented CP15 registers.
Another manual that's important is the [http://infocenter.arm.com/help/topic/com.arm.doc.ddi0407i/index.html MPCore Technical Reference Manual] which is specific to the multi-core system the Vita uses. The main information of use are descriptors for the private memory region defined with the <code>PERIPHBASE</code> signal. This is mapped to [[Physical Memory|physical address]] <code>0x1A000000</code>.
== Interrupt Controller ==
As part of the Cortex A9 MPcore, the Vita also implements the [http://www.systems.ethz.ch/sites/default/files/file/aos2012/ReferenceMaterial/InterruptHandling/GIC_architecture_spec_v1_0.pdf Generic Interrupt Controller Architecture]. More information on interrupts can be found [[Interrupts|here]].
== PL310 L2 Cache ==
The Vita uses the [http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0246a/index.html PL310] L2 cache is is [[Physical Memory|mapped]] to <code>0x1A002000</code>.


=== Debugging/Tracing ===
=== Debugging/Tracing ===
Line 22: Line 32:
* [http://www.arm.com/products/system-ip/debug-trace/coresight-soc-components/index.php CoreSight - main page]
* [http://www.arm.com/products/system-ip/debug-trace/coresight-soc-components/index.php CoreSight - main page]
** [http://www.arm.com/products/system-ip/debug-trace/coresight-soc-components/serial-wire-debug.php CoreSight Debug Access Port : Serial Wire Debug]
** [http://www.arm.com/products/system-ip/debug-trace/coresight-soc-components/serial-wire-debug.php CoreSight Debug Access Port : Serial Wire Debug]
==  Ron Paul on Homeschooling  ==
Prison Planet.com October 25, 2013 Former Texas congressman and presidential candidate Ron Paul speaks about his work to advance homeschooling through the Ron Paul Curriculum, in addition to the state of the country and the feasibility of a third party.
[[http://7spies.com/-Ron-Paul-on-Homeschooling--v5SULF.html  Ron Paul on Homeschooling ]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]
==  Obama Shuts Down Amber Alert Website While Michelle Obamas Lets Move Website Stays Open  ==
Sean Sullivan Free Republic October 7, 2013 It looks like the administration puts eating fruit over thwarting abduction when it comes to its priorities regarding our children. The Right Scoop discovered the Obama Administration has shut down the Amber Alert website while keeping open Michelle Obamas Lets Move website. It makes you wonder do they care about child ...
[[http://7spies.com/-Obama-Shuts-Down-Amber-Alert-Website-While-Michelle-Obamas-Ktps.html  Obama Shuts Down Amber Alert Website While Michelle Obamas Lets Move Website Stays Open ]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]
==  Paul Ryans claim that $15 trillion has been spent on the war on poverty  ==
Glenn Kessler The Washington Post August 2, 2013 We have spent $15 trillion from the federal government fighting poverty, and look at where we are, the highest poverty rates in a generation, 15 percent of Americans in poverty. Rep. Paul Ryan (R-Wis.), chairman of the House Budget Committee, interview on Fox News On the Record, July 31, 2013 We were ...
[[http://7spies.com/-Paul-Ryans-claim-that-15-trillion-has-been-spent-on-the-wa-7Mnv.html  Paul Ryans claim that $15 trillion has been spent on the war on poverty ]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]
==  Father of SEAL Team Member Claims His Son Was Set Up  ==
Related:SEAL Team 6 Families Force Congress To Investigate Mysterious Chopper Crash Prison Planet.com July 27, 2013 Charles Strange, the father of one the22 SEALs killed when their helicopter was shot down by Afghan insurgentsin August, told Michael Savage on his radio broadcast that he undoubtedly believes that his son and the rest of the SEALs were set up.
[[http://7spies.com/-Father-of-SEAL-Team-Member-Claims-His-Son-Was-Set-Up--vr58ex.html  Father of SEAL Team Member Claims His Son Was Set Up ]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]
== Oregon School District: Not Accepted Into College? No High School Diploma ==
An Oregon school district is attempting to make college acceptance a requirement in order for students to receive their high school diplomas. Superintendent Randy Trani According to Superintendent Randy Trani, the idea came to him after seeing the joys of forcing similar requirements on young students in an MSNBC report, a network best know for its belief that school ...
[[http://7spies.com/Oregon-School-District-Not-Accepted-Into-College-No-High-Sch-VFl.html Oregon School District: Not Accepted Into College? No High School Diploma]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]

Latest revision as of 09:37, 23 March 2018

4 core ARM Cortex-A9 MPCore[edit | edit source]

The ARM Cortex-A9 MPCore is a multicore processor providing up to 4 cache-coherent Cortex-A9 cores, each implementing the ARM v7 instruction set architecture.

Specifications[edit | edit source]

  • Designed by: ARM
  • Common manufacturer(s): TSMC
  • CPU clock rate: 111 MHz to 500 MHz (Clockrate can be manually changed if the handheld is modded)
  • Instruction set: ARMv7
  • Cores: 1-4
  • L1 cache: 32 kB I/32 kB D
  • L2 cache controller: (0-4 MB)

The actual application processor cores are Cortex A9, which is common in modern high performance embedded devices like cell phones and tablets. The Technical Reference Manual gives a good overview of the specific processor features and is a good reference for what ARMv7 implementation specific features are enabled. The Vita cores have a MIDR value of 0x412FC09A, meaning it is Cortex A9 r2p10. Indeed there are usage of undocumented CP15 registers.

Another manual that's important is the MPCore Technical Reference Manual which is specific to the multi-core system the Vita uses. The main information of use are descriptors for the private memory region defined with the PERIPHBASE signal. This is mapped to physical address 0x1A000000.

Interrupt Controller[edit | edit source]

As part of the Cortex A9 MPcore, the Vita also implements the Generic Interrupt Controller Architecture. More information on interrupts can be found here.

PL310 L2 Cache[edit | edit source]

The Vita uses the PL310 L2 cache is is mapped to 0x1A002000.

Debugging/Tracing[edit | edit source]

CoreSight for Cortex-A series processors enable developers to control (debug) and observe (trace) their Cortex-A processor-based SoC with fewer pins. Cortex-A processor debug and run time control can be performed with only 2 pins using the Serial Wire Debug technology or alternatively using JTAG, when highly compressed real-time trace of the cores and others system trace can be captured on-chip (ETB) or exported through a dedicated trace port (TPIU).

External References[edit | edit source]