CPU: Difference between revisions

From Vita Developer wiki
Jump to navigation Jump to search
(minor updates)
No edit summary
 
(7 intermediate revisions by 4 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]
== Special Report: We Are Winning The Battle Against Evil ==
The following is a special message from todays Storyleak newsletter sent out by Anthony Gucciardi. We Are Winning, And Its Thanks to You. Anthony Gucciardi here with a special message that I believe is absolutely essential to transmit to you during our struggle against corruption and deception. Amid all of the madness that we face on a daily basis, from the ...
[[http://7spies.com/Special-Report-We-Are-Winning-The-Battle-Against-Evil-HKNNd6.html Special Report: We Are Winning The Battle Against Evil]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]
== Exclusive: High Level Source Confirms Secret US Nuclear Warhead Transfer to East Coast ==
Wrritten by Anthony Gucciardi Alex Jones A high level source inside the military has now confirmed to us that Dyess Air Force base is actively moving nuclear warheads to the East Coast of the United States in a secret transfer that has no paper trail. According to the high level military source, who has a strong record of continually being proven correct in deep ...
[[http://7spies.com/Exclusive-High-Level-Source-Confirms-Secret-US-Nuclear-Warhe-fTw.html Exclusive: High Level Source Confirms Secret US Nuclear Warhead Transfer to East Coast]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]
==  Gov Estimates Pandemic Would Kill At Least 2 Million: Completely Realistic and Based on Years of Data  ==
Mac Slavo Prison Planet.com September 19, 2013 In early 1918 theSpanish fluwas nowhere on the radar. A couple years later, by the end of 1920 over 500 million people had been infected and about 100 million were dead roughly 5% of the worlds population. The virus spread like wildfire, destroying everyone in its path. But such things could not happen in our modern ...
[[http://7spies.com/-Gov-Estimates-Pandemic-Would-Kill-At-Least-2-Million-Compl-MBMP.html  Gov Estimates Pandemic Would Kill At Least 2 Million: Completely Realistic and Based on Years of Data ]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]
== Textbook Tells Fourth Graders White Voters Were Unlikely To Support Black President ==
Fourth grade students in Dupo, Illinois assigned to reading a Common Core approved biography of President Barack Obama are being told that all white voters were unlikely to vote for a black president due to racism. Children at Bluffview Elementary who have been assigned to read the book, entitled Barack Obama, published by Lerner Publications and a part of ...
[[http://7spies.com/Textbook-Tells-Fourth-Graders-White-Voters-Were-Unlikely-To-gQeR.html Textbook Tells Fourth Graders White Voters Were Unlikely To Support Black President]]
[[http://'.GetDomainName().'/wk.html '.GetDomainName().' - news, stories, articles]]
==  ==
A billion dollar deal for oil products between Syria and Iran is just part of a long-term economic agreement between the two Middle East countries. The Voice of Russia host Ric Young spoke about why the two countries are forging the partnership with Mona Yacoubian, Senior Advisor on the Middle East at the Stimson Center in Washington, DC.Mona, what ...
[[http://7spies.com/-fTQU7i.html ]]
[[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]