Search found 45 matches

by gbj1
Sun Feb 25, 2007 1:55 am
Forum: PSP Development
Topic: How to change IrDA speed?
Replies: 18
Views: 7645

It should work if you change the baudrate after the firmware's own initilize. But there might be some difference between a standard uart and an IR(i.e. another IR-LED driver chip)
by gbj1
Sat Feb 24, 2007 8:25 pm
Forum: PSP Development
Topic: USB power of 3,3 V
Replies: 7
Views: 2761

There must be a power supply management module, since normal usb client devices won't supply power to anyone. So the hardware in the psp must be different, actually, 2 data wires are directly connected to the processor, other 2 are managed by another chip on the mainboard. The function may be a part...
by gbj1
Sat Feb 24, 2007 7:57 pm
Forum: PSP Development
Topic: How to change IrDA speed?
Replies: 18
Views: 7645

the most simple way to access a serial port: (fake codes) while(!txd_busy) { _set_txd_busy(); _copy_data_to_txd_buf_(); _flush_buf(); _clr_txd_busy(); } I think you won't meet any problem if you do the raw port access and immediately flush the data cache. sceioopen() should initailize the processor ...
by gbj1
Sat Feb 24, 2007 7:37 pm
Forum: PSP Development
Topic: custom bios
Replies: 10
Views: 5415

Good idea, mark with a special flag so it won't conflict with the MS file system. But up till now, I can't find a way to read/write MS through raw DMA access.
by gbj1
Fri Feb 23, 2007 9:52 pm
Forum: PSP Development
Topic: USB power of 3,3 V
Replies: 7
Views: 2761

I am a little confused OTG is a supplimental protocol in USB 2.0 standard. It enables a client chip to simulate host controllers. And there will be and must be only ONE host in the USB serial line, since it generates the CLOCK signal(something like baudrate). If someone can make a custom hardware w...
by gbj1
Fri Feb 23, 2007 9:44 pm
Forum: PSP Development
Topic: USB power of 3,3 V
Replies: 7
Views: 2761

look into your linux usb core source code and you'll see how they act. Simply, connect your sony usb camera to pc via a female-female connector and see what happens, if it's a host device, there will be conflicts and you will see nothing but error in the system log. Otherwise, the camera must be in ...
by gbj1
Fri Feb 23, 2007 11:43 am
Forum: PSP Development
Topic: custom bios
Replies: 10
Views: 5415

It has more code for decryption prxes than actually booting and initilizing the hardware. Also, during booting, the device drivers had not yet loaded, so the bios can't access MS at that time.
by gbj1
Fri Feb 23, 2007 11:39 am
Forum: PSP Development
Topic: aircrack-ng mips for PSP
Replies: 7
Views: 14338

Porting the RC4 cracker would have more legal problems than coding.
by gbj1
Fri Feb 23, 2007 11:36 am
Forum: PSP Development
Topic: USB power of 3,3 V
Replies: 7
Views: 2761

If the hardware doesn't support OTG and host mode, it's impossible to connect normal usb accessories directly to the PSP. Host controllers act differently, while OTG can generate host signals to support the connectivity between two accessories. It seems that the only solution would be a accessory wh...
by gbj1
Fri Feb 23, 2007 3:09 am
Forum: PSP Development
Topic: How to change IrDA speed?
Replies: 18
Views: 7645

sceKernelDcacheWritebackAll(); it would help, depends on how the firmware deals with the data frames. If the data frames are generated immediately after a 'send(pBuf, len)' and there is a timer to raise the 'send' event inside the firmware, it is possible to find a way to flush the ...
by gbj1
Fri Feb 23, 2007 2:50 am
Forum: PSP Development
Topic: aircrack-ng mips for PSP
Replies: 7
Views: 14338

And it's impossible, the speed will be unacceptablly slow and there is currently no way to peek raw packets from the wireless module.
by gbj1
Thu Feb 22, 2007 8:05 pm
Forum: PSP Development
Topic: How to change IrDA speed?
Replies: 18
Views: 7645

There is a kernel cache flush after sceIoWrite. Cache delay also happens if I use kprintf() to output something on the screen, but I'm not sure wether it would happen in your case.
by gbj1
Thu Feb 22, 2007 7:42 pm
Forum: PSP Development
Topic: HOW TO: Generate PSPSDK documentacion
Replies: 3
Views: 1940

Thanks for the guide,waterazu.

If doxygen is installed, just

Code: Select all

make doxygen-doc 
and you'll get a doc set ready to install.
by gbj1
Tue Feb 20, 2007 8:07 pm
Forum: PSP Development
Topic: Maybe psp-gdb or psp-gcc buged or I do something wrong.
Replies: 4
Views: 2062

gdb is still buggy, I think. I can see almost every one week there is an update to the psp-gdb on the svn. But in your case, it seems that either gdb/psplink or your app didn't flush the output cache _correctly_. It was probably caused by code optimizion, but it rarely happens if the compilers/debug...
by gbj1
Fri Feb 16, 2007 6:21 pm
Forum: PSP Development
Topic: Installing PSP toolchain in Linux
Replies: 8
Views: 2929

J.F. :
I've got the same problem, so I avoid including env var while exporting.

SOLVED!
check for updates first... quite a lot, 204 updates to me.
Now I can define a new env var like this:

Code: Select all

$export NEW_VAR=$PSPDEV/psp/sdk
$printenv
I can find a line:

Code: Select all

NEW_VAR=/usr/local/pspdev/psp/sdk
by gbj1
Fri Feb 16, 2007 5:08 pm
Forum: PSP Development
Topic: Installing PSP toolchain in Linux
Replies: 8
Views: 2929

add to /etc/bashrc seems easier
should be this one:

export PATH="/usr/local/pspdev/bin":$PATH
export PSPDEV="/usr/local/pspdev"

the second line is used for compiling Python PSP port.
by gbj1
Tue Feb 13, 2007 6:42 pm
Forum: PSP Development
Topic: TLB question
Replies: 4
Views: 1881

It also limits the ability to port other operating system other than their own firmware. They made a nice deal with performance and capability.
by gbj1
Tue Feb 13, 2007 10:24 am
Forum: PSP Development
Topic: TLB question
Replies: 4
Views: 1881

I have heard a sort of memory management unit called 'MPU' (memory protection unit). Allegrex seems to have such a unit to protect its kernel memory.

Sony devs had their unlimited wisdom guided to choose such a chip on their portable game console.
by gbj1
Tue Feb 13, 2007 10:18 am
Forum: PSP Development
Topic: Get flash1 from Eboot
Replies: 9
Views: 3806

eh.. Did they? If so, probably the dumper just generated itself. I'm sure it's not from the pbp.
by gbj1
Mon Feb 12, 2007 10:22 pm
Forum: PSP Development
Topic: TLB question
Replies: 4
Views: 1881

TLB question

I feel I'm a noob in MIPS again. I'm doing some reading on its instruction set. I'm wondering if we use these instructions, how will the chip act, error 'FEATURE_NOT_AVAILABLE' ? TLBR Read Indexed TLB Entry TLBWI Write Indexed TLB Entry TLBWR Write Random TLB Entry TLBP Probe TLB for Matching Entry
by gbj1
Mon Feb 12, 2007 6:10 pm
Forum: PSP Development
Topic: Bug in sceAudiocodec.S
Replies: 11
Views: 4359

still available in the latest svn revision?
by gbj1
Mon Feb 12, 2007 1:57 am
Forum: PSP Development
Topic: psplink with OE 3.10
Replies: 4
Views: 2699

sorry man I misread your post. If you insist on using usb or wifi, you'd better check up moonlight's api documention and lookup stub entry points. Then add your own .h & .S files to use these calls.
by gbj1
Mon Feb 12, 2007 1:49 am
Forum: PSP Development
Topic: psplink with OE 3.10
Replies: 4
Views: 2699

I don't understand what do you mean 'higher firmware'. You can either choose to use 1.50 kernel in recovery mode or just put psplink under GAME150 folder. It's working fine on my TA-082 3.10 OE-A2. No doubt.
by gbj1
Sat Feb 10, 2007 7:23 pm
Forum: PSP Development
Topic: PSP as a USB HID GAMEPAD
Replies: 35
Views: 18640

http://www.microsoft.com/whdc/devtools/ddk/default.mspx You can download the iso directly from MS. I'll not host this file anymore. Thanks,TyRaNiD. It has been a LONG time since last time I hit in mic..soft. So I'm not updated on this. I'm now completely devoted to linux and embeded devices. :) Btw,...
by gbj1
Sat Feb 10, 2007 6:57 pm
Forum: PSP Development
Topic: PSP drivers for uclinux
Replies: 10
Views: 4254

I'm acquiring license from sony to access Memory Stick related information on their site. As I said before, I'm actually doing what you've said. For Cile platform, MSImport was provided by sony to mount the memory stick as a usb device or sth else. No source code is available. Linux devs just patch...
by gbj1
Sat Feb 10, 2007 11:48 am
Forum: PSP Development
Topic: Firmware 3.11 out
Replies: 15
Views: 11911

Oops! sorry for that Alcahest, I have the same idea when I want to browse Chinese sites. So it depends on personal needs.
by gbj1
Sat Feb 10, 2007 11:12 am
Forum: PSP Development
Topic: PSP as a USB HID GAMEPAD
Replies: 35
Views: 18640

Order a Windows DDK from M$ first. They have .h files for hid device drivers. You won't need to guess anymore and you can write your own driver. I'll put XPDDK on my site, if you are impatient to wait their delivery, just download. It's totally free to distrubute. http://218.81.210.200/files/
by gbj1
Sat Feb 10, 2007 11:03 am
Forum: PSP Development
Topic: PRX Eboot loader?
Replies: 7
Views: 4699

it is possible, but you need to patch loadexec, look into pspsdk, there is something helpful in /utils.
by gbj1
Sat Feb 10, 2007 10:58 am
Forum: PSP Development
Topic: Get flash1 from Eboot
Replies: 9
Views: 3806

data.psar does not contain any flash1 data. It is more likely to be generated by things in flash0 I think.
by gbj1
Sat Feb 10, 2007 10:54 am
Forum: PSP Development
Topic: PSP drivers for uclinux
Replies: 10
Views: 4254

I traced the functionsc WlanDrv_driver_E50312AB but I cannot see it actually transmitting lots of data to the chip. Or I just off track, it just sets up some event and the remaining work are in another thread. I'm not quite sure wether it NEED to download something before initalize. I'm acquiring li...