| View previous topic :: View next topic |
| Author |
Message |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Tue Sep 23, 2008 9:15 pm Post subject: USB Access PSP |
|
|
| Is it possible to access more than what we can access now on usb mode? I mean , can we access the idstorage, ipl, and maybe other stuff. I am not for sure, but maybe Dax can answer this too because I think he made one to access the idstorage via usb |
|
| Back to top |
|
 |
jean

Joined: 05 Jan 2008 Posts: 489
|
Posted: Tue Sep 23, 2008 10:59 pm Post subject: |
|
|
| USB is a bus, a way to communicate, not the pink fairy. If you code a program that accesses the resources you mentioned and exposes them via USB through a communication protocol, then you can do whathever you want.....but i doubt you will. If you were wondering if such a service exists natively without the need for unsigned code execution, well the answer is: "99.99999999999999999999999% NO" |
|
| Back to top |
|
 |
gr8npwrfl

Joined: 28 Aug 2008 Posts: 12 Location: Southern California
|
Posted: Wed Sep 24, 2008 2:22 am Post subject: USB Host |
|
|
To communicate on the USB bus you have to have a Host and a slave.
You can only have one host but you can have many slaves. The host
controls all communication on the bus just like a traffic cop. It tells the
slaves who can talk and when they can talk. A slave can not talk to a
slave, for instance if you have two usb hard drives they can not send
information to each other. The host has to read the data from one slave
drive to and then send it to the other slave drive.
To be a host it requires several more layers of protocol to be the
controller. It is completely different hardware than a slave.
The PSP is a slave device, it lacks the hardware to be a host. No
combination of drivers or software can make it a host, it just lacks
the parts to be a host. Since the PSP is a slave device it can not talk
to other slave devices, like keyboards, joysticks, mice, hard drives, ect.
There is one very clever program that was written. It is usbhostfs and
nethostfs. It required a computer on the storage side to run a program
that contantly checked the slave to see if it wanted something. It would
then read the requests and process the data. It made it look like the PSP
was controlling the storage of the PC. It did not change the fact that the
PC was still the Host controller. This requires a computer on the device
side to run special software to make it work.
Another example of this was the chotto shot camera. It was the host
controlling the PSP.
That is why you do not see us hooking many more devices to the PSP,
because the engineering required is beyond the scope of most hackers
and requires a very concentrated effort on the part of the developer.
There are several people working hard on trying to provide a platform
that will overcome this problem, but as of now it is not completed yet. _________________ _____________________________
Ignorance is not fatal, it is curable |
|
| Back to top |
|
 |
kralyk
Joined: 06 Apr 2008 Posts: 114 Location: Czech Republic, central EU
|
Posted: Wed Sep 24, 2008 7:22 am Post subject: |
|
|
So the GPS module works as a host?
A bit surprising ... I mean, I never thought psp was a host, I just thought
that in the gps/camera case, it somehow goes around the whole usb thing and just uses the pins for some more simple protocol with the device... _________________ ...sorry for my english... |
|
| Back to top |
|
 |
gr8npwrfl

Joined: 28 Aug 2008 Posts: 12 Location: Southern California
|
Posted: Wed Sep 24, 2008 12:45 pm Post subject: |
|
|
Yes the GPS is a host that sends serial data over the usb lines
If you control the software at both ends you can ignore the protocol that
should be run and run your own protocol.
I have the source to the gps software that runs over the headphone serial port. It does normal serial gps protocol, my assumption on the USB GPS is that it is the same just over the USB Port.
If I had one I would plug it into my usb analyzer and find out for sure. _________________ _____________________________
Ignorance is not fatal, it is curable |
|
| Back to top |
|
 |
jean

Joined: 05 Jan 2008 Posts: 489
|
Posted: Wed Sep 24, 2008 6:48 pm Post subject: |
|
|
| On one side your assumptions seem too simplistic to me, and on the other side things could be a lot easier: i don't think things work like you explained....moreover i can assure you that USB gps is not running NMEA, so it's not the same thing as the "earphone one" (guess you're speaking of the holux hack with deniska's mapthis). There's not enough circuitry in the accessories to make they act as hosts...and it would be incredibly stupid to do so. PSP must be detecting accessories and start some sort of proprietary protocol unrelated to USB (i will inform you when i gain free time enough to finish an experiment of mine about it). In the end i would like to make you notice that we're near to crossing the line....another discussion on PSP USB protocols and the admins will ban us forever i guess!! ;) |
|
| Back to top |
|
 |
gr8npwrfl

Joined: 28 Aug 2008 Posts: 12 Location: Southern California
|
Posted: Thu Sep 25, 2008 1:19 am Post subject: |
|
|
I know exactly what you mean. I have a tendency to try and make things simplistic so that more people can follow what is being discussed.
If we strip away all the layers of protocol and software USB is exactly what
it's name says Serial Bus.
I have long suspected that there is a trigger in the PSP firmware that informs
the PSP that a special device is connected to the usb connector and bypasses
all the normal protocol.
Then the system just runs as high speed serial. I had started to run a usb sniffer on it and some of the data did not make sense. I would have to have
bought the GPS or Camera to continue my work on it and I had other things to work on before that.
I did not want to start a whole conversation based totally on speculation
until I had further information to go on. _________________ _____________________________
Ignorance is not fatal, it is curable |
|
| Back to top |
|
 |
jean

Joined: 05 Jan 2008 Posts: 489
|
Posted: Thu Sep 25, 2008 2:00 am Post subject: |
|
|
| Quote: | If we strip away all the layers of protocol and software USB is exactly what
it's name says Serial Bus.
|
well....no. Aside from software stuff, there are hardware requirements....so USB is more similar to rs485 differential serial communication protocol...this is why you have D+ and D-. They are not in/out, but data+ and data-. Let's say you want to transmit 10: split 10 in two amounts that subtracted give 10...you can put 15 on D+ and 5 on D-. Now if our friends' mobile phones interfere with our communication, we can assume their interference as additive; if the interference is a low order of magnitude so the whole thing doesn't saturate, let's say 3, then we can have 18, 8 or 12, 2. In all cases, on the receiver side the first less the second gives the original 10. Devices communicate on the single "virtual" shared channel implemented by D+ and D- using the so called time-slots usually assigned by an hardware arbiter implemented by host (i.e. there's a formal order in wich devices can "speak"). Such a complexity is not cheaply affordable by a 15x15x40 mm digital camera. BUT, if you take a look, the mini-B USB connector has a 5th pin whose function is vendor-specific: that could be a "plain" serial pin. I'm going to test this simply making a cable extension and then interrupting middle pin connection. |
|
| Back to top |
|
 |
gr8npwrfl

Joined: 28 Aug 2008 Posts: 12 Location: Southern California
|
Posted: Thu Sep 25, 2008 2:07 am Post subject: |
|
|
Yes rs485 is differential but it is still a serial protocol.
I had never given the vendor specific pin any thought. I applaud your
investigative intuitiveness. _________________ _____________________________
Ignorance is not fatal, it is curable |
|
| Back to top |
|
 |
SilverSpring
Joined: 27 Feb 2007 Posts: 115
|
Posted: Sat Oct 11, 2008 9:56 am Post subject: |
|
|
Just to add some more fuel to the fire over the heated usb host debates over here at ps2dev:
| Code: | 0x3E961C02 sceSysregUsbhostResetEnable
0xACFA3764 sceSysregUsbhostResetDisable
0xDA4FCA1D sceSysregUsbhostClkEnable
0x228A73E1 sceSysregUsbhostClkDisable
0xE321F41A sceSysregUsbhostBusClockEnable
0x4D2FFC60 sceSysregUsbhostBusClockDisable
0xFFEB6E00 sceSysregUsbhostQueryIntr
0x87C2BA20 sceSysregUsbhostAcquireIntr |
|
|
| Back to top |
|
 |
KickinAezz
Joined: 03 Jun 2007 Posts: 328
|
Posted: Sat Oct 11, 2008 10:22 am Post subject: |
|
|
| SilverSpring wrote: | Just to add some more fuel to the fire over the heated usb host debates over here at ps2dev:
| Code: | 0x3E961C02 sceSysregUsbhostResetEnable
0xACFA3764 sceSysregUsbhostResetDisable
0xDA4FCA1D sceSysregUsbhostClkEnable
0x228A73E1 sceSysregUsbhostClkDisable
0xE321F41A sceSysregUsbhostBusClockEnable
0x4D2FFC60 sceSysregUsbhostBusClockDisable
0xFFEB6E00 sceSysregUsbhostQueryIntr
0x87C2BA20 sceSysregUsbhostAcquireIntr |
|
HOST???!!!
USB Keyboard YEAHH!! _________________ Intrigued by PSP system Since December 2006.
Use it more for Development than for Gaming. |
|
| Back to top |
|
 |
J.F.
Joined: 22 Feb 2004 Posts: 2906
|
Posted: Sat Oct 11, 2008 10:36 am Post subject: |
|
|
| Okay, if that really is using the PSP as a host, I'll apologize to everyone I've said otherwise to. :) |
|
| Back to top |
|
 |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Sat Oct 11, 2008 10:46 am Post subject: |
|
|
| Can you send the gps sio source so I can study it? And I understand how there things works now. Took some time off on other projects, and did some things. |
|
| Back to top |
|
 |
SilverSpring
Joined: 27 Feb 2007 Posts: 115
|
Posted: Sat Oct 11, 2008 11:30 am Post subject: |
|
|
Before more hysteria ensues I should mention that these functions were only added in later fw and actually might have been for an unreleased psp model. They were added in at the same time as the sceSysregAtahdd___ etc functions.
So usb host may have been intended for the hdd model psp instead, and not actually for any of the current models that are out now (maybe for PSP-4000 since PSP-3000 is not it).
There are no modules or apps that use these usbhost & atahdd functions so it may be that the current models are simply unable to use them (as with the SYSCON GSensor and Bluetooth functions). |
|
| Back to top |
|
 |
gr8npwrfl

Joined: 28 Aug 2008 Posts: 12 Location: Southern California
|
Posted: Sat Oct 11, 2008 12:01 pm Post subject: USB HOST |
|
|
Without decoding the software there is also no way to know if that is a host
that is attached externally either.
Or like you said it could have been a host chip that was in hardware that was not released and was on the internal bus.
If the complete drivers were there and we could hack in the hardware they way they had it attached it would be great. Since Sony never released the hardware there is no guarantee that those hooks will even exist in version 5.0 _________________ _____________________________
Ignorance is not fatal, it is curable |
|
| Back to top |
|
 |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Sat Oct 11, 2008 12:29 pm Post subject: |
|
|
| Ill take a look into this. Maybe ill find something in my research, there are some prx files thats never in the psp sdk, that I might use them. Is it away to decompress from the sony keys? The one that was made by dax psp-packer? |
|
| Back to top |
|
 |
kralyk
Joined: 06 Apr 2008 Posts: 114 Location: Czech Republic, central EU
|
Posted: Fri Oct 17, 2008 3:24 am Post subject: |
|
|
@SilverSpring:
| SilverSpring wrote: | | Before more hysteria ensues I should mention that these functions were only added in later fw and actually might have been for an unreleased psp model. They were added in at the same time as the sceSysregAtahdd___ etc functions. |
And when was that actually? Sorry, just asking because I didnt notice they had been added...
@Dariusc123456:
Oh yes, I'm sure youll find out amazing things we cant even imagine in your research, and release magical usbhost psp driver. You dont even know what USB is in the first post and know you want to "decompress sony keys". Sorry, but your posts always make me LOL.
(Not that I would be any better in psp-programming, but at least I realize it... unlike you) _________________ ...sorry for my english... |
|
| Back to top |
|
 |
cloudhunter
Joined: 17 Aug 2006 Posts: 86
|
Posted: Fri Oct 17, 2008 6:27 am Post subject: |
|
|
There's really no need for personal attacks. If you don't agree with what someone is saying, best thing to do is to just ignore them (unless it is particularly stupid).
As for whether you can access the IPL etc by USB - yes, you can - if you code it. Remember Boosters USBSSS? That accessed other things by USB, like memory etc.
Cloudy _________________ :) |
|
| Back to top |
|
 |
SilverSpring
Joined: 27 Feb 2007 Posts: 115
|
Posted: Fri Oct 17, 2008 1:40 pm Post subject: |
|
|
@Kralyk, they were added starting from 2.70 IIRC. No-one knew they had been added at the time because those nids had been unknown until only recently. We knew that new functions had been added that referenced new devices but did not know what kind of devices and what they were. _________________ PSP PRX LibDocs |
|
| Back to top |
|
 |
jean

Joined: 05 Jan 2008 Posts: 489
|
Posted: Fri Oct 17, 2008 7:34 pm Post subject: |
|
|
| Quote: | | There's really no need for personal attacks. If you don't agree with what someone is saying, best thing to do is to just ignore them (unless it is particularly stupid). |
Don't know if you take a look at his posts every now and then, but basically with your last punctualization you are justifying every personal attack to darius....
Anyway, just to bring some tech along with lols i'm pretty sure we don't have an host hardware, i would continue investigating on the [regular client]/[simple serial proprietary protocol] duality on psp acessories. |
|
| Back to top |
|
 |
|