Forum: PS3 Technical Development - Topics relating to Playstation 3 Technical development ONLY! Read and discuss the latest Cobra USB updates, tutorials and explanations or find out about bluray drive bypass firmwares plus much more.


The above video goes away if you are a member and logged in, so log in now!




 
Would you like to get all the new info from
PSX-Scene in your email each day?




Want to learn more about the team keeping you up to date with the latest scene news?

Read about them now!

Check out our Developer bios, too!

 


User Tag List

Like Tree30Likes

Thread: CECHA01 + Infectus
  

Page 18 of 20 FirstFirst ... 8 16 17 18 19 20 LastLast
Results 171 to 180 of 196
  1. #171  
    dmcbudman is offline Banned
    Join Date
    Jan 2005
    Posts
    82
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    3
    Likes Received
    0
    Quote Originally Posted by wizdumb View Post
    So, i am able to dump my NOR thanks to judges and defyboy. Weird thing is every dump is 15.9mb and never a true 16mb file. Keep in mind I am testing this on a RSOD console. No two files are the same size but always about 50,000 bytes short (more or less) of 16mb. Hmm...
    also with the 360 (not sure about ps3)
    if you power on in between it will change the dump, but different file sizes...yeah bad wiring id imagine
    Reply With Quote  

  2. #172  
    wizdumb is offline Member
    Join Date
    Oct 2010
    Location
    California
    Posts
    113
    Downloads
    1
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    28
    Likes Received
    27
    Alright did some more dump tests. The previous dumps that weren't matching up were done with the console on in factory/service mode. I then put the console back to retail with "Lv2diag.self FILE 2" and now multiple dumps match but are still short by 20,000 bytes to complete the full 16mb. Wiring matches the source and I have checked the physical wiring many times both on the teensy as well as the motherboard and everything checks out. Here is the source code used NOR read.rar if anyone would like to take a look at it. Pictures of the pinout for motherboard to teensy that I used can be found on page 14.

    Again this testing is done on a RSOD console so those last missing 20,000 bytes might be the cause. I am hoping someone with the same motherboard is working on this as well, as I would like to confirm the source code/wiring is working properly.
    Reply With Quote  

  3. #173  
    dmcbudman is offline Banned
    Join Date
    Jan 2005
    Posts
    82
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    3
    Likes Received
    0
    i was under the assumption that it needs dumped while in standby
    Reply With Quote  

  4. #174  
    wizdumb is offline Member
    Join Date
    Oct 2010
    Location
    California
    Posts
    113
    Downloads
    1
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    28
    Likes Received
    27
    I have tried dumping while it is off, standby, and powered. Powered on seems to give me the somewhat proper dump whereas in standby or off I get one long line of "ÿ"

    All data is dumped as raw
    Reply With Quote  

  5. #175  
    sege5641's Avatar
    sege5641 is offline Registered User
    Join Date
    Apr 2011
    Location
    Cape Town, South Africa
    Posts
    19
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    3
    Likes Received
    2
    Hey everyone I started a new thread for just the NOR and Teensy++ 2.0 discussion

    http://psx-scene.com/forums/f149/tee...54/#post888516 (Teensy++ 2.0 - NOR DUMP/FLASH)
    Reply With Quote  

  6. #176  
    defyboy is offline Member
    Join Date
    Apr 2008
    Posts
    136
    Downloads
    14
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    1
    Likes Received
    20
    Make sure you are supplying sufficient power, make sure you have it grounded and are using the correct tristate point.

    The 3.3v regulator on the Teensy does not have nearly enough power to supply the console. USB port will only supply max 500ma, the 3.3v regulator is rated at 500ma but the console will draw about 1.7a, it will overheat the regulator and underpower the console. Disconnect 3.3v from your teensy to the PS3 motherboard and only use the consoles internal power.

    I am getting closer to releasing the newest iteration of ATNORFLASH along with the PC-side application.
    wizdumb and sege5641 like this.
    Reply With Quote  

  7. #177  
    defyboy is offline Member
    Join Date
    Apr 2008
    Posts
    136
    Downloads
    14
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    1
    Likes Received
    20
    I see your dumps were a bit short, It might pay to look at the source here:
    Code:
    		for(int x=0; x<=0x7F; x++) {
    			for(int y=0; y<=0xFF; y++) {
    				for(int z=0; z<=0xFF; z++) {
    					ADDR3_PORT = x;
    					ADDR2_PORT = y;
    					ADDR1_PORT = z;
    					__asm__ volatile ("nop");
    					__asm__ volatile ("nop");
    					usb_serial_putchar(DATA2_PIN);
    					usb_serial_putchar(DATA1_PIN);
    				}
    			}
    		}
    The loops look incorrect, try:
    Code:
    		for(int x=0; x==0x7F; x++) {
    			for(int y=0; y==0xFF; y++) {
    				for(int z=0; z==0xFF; z++) {
    That should add a bit of data you are missing.

    Again, this source was not ready for the primetime, don't expect it to work properly
    Last edited by defyboy; 07-01-2011 at 05:08 PM.
    wizdumb likes this.
    Reply With Quote  

  8. #178  
    wizdumb is offline Member
    Join Date
    Oct 2010
    Location
    California
    Posts
    113
    Downloads
    1
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    28
    Likes Received
    27
    Quote Originally Posted by defyboy View Post
    Make sure you are supplying sufficient power, make sure you have it grounded and are using the correct tristate point.

    The 3.3v regulator on the Teensy does not have nearly enough power to supply the console. USB port will only supply max 500ma, the 3.3v regulator is rated at 500ma but the console will draw about 1.7a, it will overheat the regulator and underpower the console. Disconnect 3.3v from your teensy to the PS3 motherboard and only use the consoles internal power.

    I am getting closer to releasing the newest iteration of ATNORFLASH along with the PC-side application.
    Thanks for the update. As far as power to the teensy goes, I have already removed the 3.3 voltage regulator with the 5 volt trace cut, but I do still short out the 3 volt pads correct?

    Quote Originally Posted by defyboy View Post
    I see your dumps were a bit short, It might pay to look at the source here:
    Code:
    		for(int x=0; x<=0x7F; x++) {
    			for(int y=0; y<=0xFF; y++) {
    				for(int z=0; z<=0xFF; z++) {
    					ADDR3_PORT = x;
    					ADDR2_PORT = y;
    					ADDR1_PORT = z;
    					__asm__ volatile ("nop");
    					__asm__ volatile ("nop");
    					usb_serial_putchar(DATA2_PIN);
    					usb_serial_putchar(DATA1_PIN);
    				}
    			}
    		}
    The loops look incorrect, try:
    Code:
    		for(int x=0; x==0x7F; x++) {
    			for(int y=0; y==0xFF; y++) {
    				for(int z=0; z==0xFF; z++) {
    That should add a bit of data you are missing.

    Again, this source was not ready for the primetime, don't expect it to work properly
    I appreciate it. I'll give it a try in the meantime while waiting for you updated work.

    One question though. On your board you have a separate WP test point where as on my mobo it is tied to VCC. How would I go about wiring that point to the teensy?
    Reply With Quote  

  9. #179  
    sege5641's Avatar
    sege5641 is offline Registered User
    Join Date
    Apr 2011
    Location
    Cape Town, South Africa
    Posts
    19
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    3
    Likes Received
    2
    Quote Originally Posted by wizdumb View Post
    Thanks for the update. As far as power to the teensy goes, I have already removed the 3.3 voltage regulator with the 5 volt trace cut, but I do still short out the 3 volt pads correct?



    I appreciate it. I'll give it a try in the meantime while waiting for you updated work.

    One question though. On your board you have a separate WP test point where as on my mobo it is tied to VCC. How would I go about wiring that point to the teensy?
    So are you guys cutting the power cable in the usb cable? and just using the power from the Playstation?
    Reply With Quote  

  10. #180  
    sege5641's Avatar
    sege5641 is offline Registered User
    Join Date
    Apr 2011
    Location
    Cape Town, South Africa
    Posts
    19
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    3
    Likes Received
    2
    Quote Originally Posted by defyboy View Post
    Make sure you are supplying sufficient power, make sure you have it grounded and are using the correct tristate point.

    The 3.3v regulator on the Teensy does not have nearly enough power to supply the console. USB port will only supply max 500ma, the 3.3v regulator is rated at 500ma but the console will draw about 1.7a, it will overheat the regulator and underpower the console. Disconnect 3.3v from your teensy to the PS3 motherboard and only use the consoles internal power.

    I am getting closer to releasing the newest iteration of ATNORFLASH along with the PC-side application.
    We all are pulling for ya! Just let us know if you need anything or have us test things for you.
    Reply With Quote  

Page 18 of 20 FirstFirst ... 8 16 17 18 19 20 LastLast
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •