Editing Talk:Communication Processor

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 8: Line 8:
update.bin = v1.0.4c2_TMU510_u.bin - first 32 bytes (IV + Hash)
update.bin = v1.0.4c2_TMU510_u.bin - first 32 bytes (IV + Hash)


{{keyboard|content=<syntaxhighlight lang="bash">openssl enc -aes-256-cbc -d -K E8ED2B817207B70C5DF9090507AF2A8982967620D692B92A59231638402DF13F -iv 737973317347595DFB853B7B4A28105D -in update.bin -out update.tar.gz</syntaxhighlight>}}
{{keyboard|content=openssl enc -aes-256-cbc -d -K E8ED2B817207B70C5DF9090507AF2A8982967620D692B92A59231638402DF13F -iv 737973317347595DFB853B7B4A28105D -in update.bin -out update.tar.gz
}}
<br />
<br />
<br />
Output:
Output:
<pre>
<pre>
Line 27: Line 31:
Thanks,
Thanks,


{{keyboard|content=<syntaxhighlight lang="bash">openssl enc -aes-256-cbc -d -K E8ED2B817207B70C5DF9090507AF2A8982967620D692B92A59231638402DF13F -iv FB306DA62E530EB13FB9D0EF8615060A -in reftool_cp_133.bin -out reftool_cp_133.tar.gz</syntaxhighlight>}}
{{keyboard|content=openssl enc -aes-256-cbc -d -K E8ED2B817207B70C5DF9090507AF2A8982967620D692B92A59231638402DF13F -iv FB306DA62E530EB13FB9D0EF8615060A -in reftool_cp_133.bin -out reftool_cp_133.tar.gz
}}


works. (I should learn reading ;))
works. (I should learn reading ;))
Line 87: Line 92:


The Communication Processor can also talk to the southbridge.
The Communication Processor can also talk to the southbridge.
== CP Revisions ==
<pre>
/*
TCP-510  Rev. 1:  0x10
TCP-510  Rev. 2:  0x11
TCP-520  Rev. 1:  0x20
TCP-520  Rev. 2:  0x21
TCP-520  Rev. 3:  0x22
*/
static int get_cp_revision(void)
{
unsigned int rev = (unsigned int)(*((volatile unsigned long long *) 0xFF1FE000) >> 32);
return (((rev >> 2) & 0x3f) | ((rev >> 4) & 0x40));
}
</pre>
== PS2/PSP/PS3/VITA/PS4 CP ==
<pre>
PS2
DTL-T10000(H) / DTL-T15000 "MPU-401"
x86 PCI SBC (PCI-586VE-S / PCI-815VE)
PSP
DTP-T1000 "MPU-220"
Sony CXD9823 (Toshiba TX4937)
PS3
DECR-1000 "MPU-230"
Sony CXD9802 (Toshiba TX4937)
PSVITA
PDEL-1000 "?"
Renesas µPD77630A (EMMA Mobile1-S)
PS4
DUH-D7000 "?"
Marvell 88R6B2D-AD (Armada SP?)
</pre>
=== VITA CP Documents ===
See --> [https://psdevwiki.com/vita/index.php?title=Communication_Processor Vita Dev Wiki#Communication Processor]
Please note that all contributions to PS3 Developer wiki are considered to be released under the GNU Free Documentation License 1.2 (see PS3 Developer wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following hCaptcha:

Cancel Editing help (opens in new window)

Templates used on this page: