X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=psp%2Fpsp.c;h=b2d0d727ca19962c6b26b4276477dec919a1fc66;hb=2aea862d8ac79031a0f581c7eef6414960a0dafc;hp=48e5e63e36795e61d341333770d8a3ac6b9eead8;hpb=703e4c7bbb2cfd549797e2092e4d863547b3e87c;p=libpicofe.git diff --git a/psp/psp.c b/psp/psp.c index 48e5e63..b2d0d72 100644 --- a/psp/psp.c +++ b/psp/psp.c @@ -5,6 +5,7 @@ #include #include #include +#include #include #include "psp.h" @@ -12,7 +13,9 @@ PSP_MODULE_INFO("PicoDrive", 0, 1, 34); -void *psp_screen = PSP_VRAM_BASE0; +unsigned int __attribute__((aligned(16))) guCmdList[GU_CMDLIST_SIZE]; + +void *psp_screen = VRAM_FB0; static int current_screen = 0; /* front bufer */ static SceUID logfd = -1; @@ -29,7 +32,8 @@ static int callback_thread(SceSize args, void *argp) { int cbid; - lprintf("callback_thread started with id %i\n", sceKernelGetThreadId()); + lprintf("callback_thread started with id %i, priority %i\n", + sceKernelGetThreadId(), sceKernelGetThreadCurrentPriority()); cbid = sceKernelCreateCallback("Exit Callback", exit_callback, NULL); sceKernelRegisterExitCallback(cbid); @@ -41,9 +45,10 @@ static int callback_thread(SceSize args, void *argp) void psp_init(void) { - int thid; + SceUID thid; - lprintf("entered psp_init, threadId %i\n", sceKernelGetThreadId()); + lprintf("entered psp_init, threadId %i, priority %i\n", sceKernelGetThreadId(), + sceKernelGetThreadCurrentPriority()); thid = sceKernelCreateThread("update_thread", callback_thread, 0x11, 0xFA0, 0, 0); if (thid >= 0) @@ -53,13 +58,39 @@ void psp_init(void) /* video */ sceDisplaySetMode(0, 480, 272); - sceDisplaySetFrameBuf(PSP_VRAM_BASE1, 512, PSP_DISPLAY_PIXEL_FORMAT_565, PSP_DISPLAY_SETBUF_NEXTFRAME); + sceDisplaySetFrameBuf(VRAM_FB1, 512, PSP_DISPLAY_PIXEL_FORMAT_565, PSP_DISPLAY_SETBUF_NEXTFRAME); current_screen = 1; - psp_screen = PSP_VRAM_BASE0; + psp_screen = VRAM_FB0; /* gu */ sceGuInit(); + sceGuStart(GU_DIRECT, guCmdList); + sceGuDrawBuffer(GU_PSM_5650, (void *)VRAMOFFS_FB0, 512); + sceGuDispBuffer(480, 272, (void *)VRAMOFFS_FB1, 512); // don't care + sceGuClear(GU_COLOR_BUFFER_BIT | GU_DEPTH_BUFFER_BIT); + sceGuDepthBuffer((void *)VRAMOFFS_DEPTH, 512); + sceGuOffset(2048 - (480 / 2), 2048 - (272 / 2)); + sceGuViewport(2048, 2048, 480, 272); + sceGuDepthRange(0xc350, 0x2710); + sceGuScissor(0, 0, 480, 272); + sceGuEnable(GU_SCISSOR_TEST); + + sceGuDepthMask(0xffff); + sceGuDisable(GU_DEPTH_TEST); + + sceGuFrontFace(GU_CW); + sceGuEnable(GU_TEXTURE_2D); + sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGB); + sceGuAmbientColor(0xffffffff); + sceGuColor(0xffffffff); + sceGuFinish(); + sceGuSync(0, 0); + + sceDisplayWaitVblankStart(); + sceGuDisplay(GU_TRUE); + + /* input */ sceCtrlSetSamplingCycle(0); sceCtrlSetSamplingMode(0); @@ -76,19 +107,20 @@ void psp_finish(void) void psp_video_flip(int wait_vsync) { if (wait_vsync) sceDisplayWaitVblankStart(); - sceDisplaySetFrameBuf(psp_screen, 512, PSP_DISPLAY_PIXEL_FORMAT_565, PSP_DISPLAY_SETBUF_NEXTFRAME); + sceDisplaySetFrameBuf(psp_screen, 512, PSP_DISPLAY_PIXEL_FORMAT_565, + wait_vsync ? PSP_DISPLAY_SETBUF_IMMEDIATE : PSP_DISPLAY_SETBUF_NEXTFRAME); current_screen ^= 1; - psp_screen = current_screen ? PSP_VRAM_BASE0 : PSP_VRAM_BASE1; + psp_screen = current_screen ? VRAM_FB0 : VRAM_FB1; } void *psp_video_get_active_fb(void) { - return current_screen ? PSP_VRAM_BASE1 : PSP_VRAM_BASE0; + return current_screen ? VRAM_FB1 : VRAM_FB0; } void psp_video_switch_to_single(void) { - psp_screen = PSP_VRAM_BASE0; + psp_screen = VRAM_FB0; sceDisplaySetFrameBuf(psp_screen, 512, PSP_DISPLAY_PIXEL_FORMAT_565, PSP_DISPLAY_SETBUF_NEXTFRAME); current_screen = 0; } @@ -108,6 +140,19 @@ unsigned int psp_pad_read(int blocking) return pad.Buttons; } +int psp_get_cpu_clock(void) +{ + return scePowerGetCpuClockFrequencyInt(); +} + +int psp_set_cpu_clock(int clock) +{ + int ret = scePowerSetClockFrequency(clock, clock, clock/2); + if (ret != 0) lprintf("failed to set clock: %i\n", ret); + + return ret; +} + /* alt logging */ #define LOG_FILE "log.log"