X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=gp2x%2Fgp2x.c;h=8bad610e2756340696fb6d632224f514c0d8ec04;hb=43c24b301dc8c0c5952e1d22bad865f4304d01f8;hp=6d9f82e39f0afeff914df4898045287e80bd44b3;hpb=42c8119010bfc48776e8c82e42cceb06d07c0247;p=gpsp.git diff --git a/gp2x/gp2x.c b/gp2x/gp2x.c index 6d9f82e..8bad610 100644 --- a/gp2x/gp2x.c +++ b/gp2x/gp2x.c @@ -1,6 +1,6 @@ -/* Parts used from cpuctrl */ -/* cpuctrl for GP2X - Copyright (C) 2005 Hermes/PS2Reality +/* + Parts used from cpuctrl, Copyright (C) 2005 Hermes/PS2Reality + Portions Copyright (C) 2009 notaz This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,25 +19,66 @@ */ -#define _BSD_SOURCE #define _GNU_SOURCE +#include "../common.h" #include #include #include #include #include -#include "../common.h" +#include #include "gp2x.h" -#include "warm.h" +#include "pollux_dpc_set.h" + +static u32 gpsp_gp2x_dev_audio; +static u32 gpsp_gp2x_dev; +static u32 gpsp_gp2x_gpiodev; -u32 gp2x_audio_volume = 74/2; -u32 gpsp_gp2x_dev_audio = 0; -u32 gpsp_gp2x_dev = 0; -u32 gpsp_gp2x_gpiodev = 0; +static u32 gp2x_audio_volume = 74/2; static volatile u16 *gpsp_gp2x_memregs; static volatile u32 *gpsp_gp2x_memregl; +u32 button_plat_mask_to_config[] = +{ + GP2X_UP, + GP2X_LEFT, + GP2X_DOWN, + GP2X_RIGHT, + GP2X_START, + GP2X_SELECT, + GP2X_L, + GP2X_R, + GP2X_A, + GP2X_B, + GP2X_X, + GP2X_Y, + GP2X_VOL_DOWN, + GP2X_VOL_UP, + GP2X_PUSH, + GP2X_VOL_MIDDLE +}; + +u32 gamepad_config_map[16] = +{ + BUTTON_ID_UP, // Up + BUTTON_ID_LEFT, // Left + BUTTON_ID_DOWN, // Down + BUTTON_ID_RIGHT, // Right + BUTTON_ID_START, // Start + BUTTON_ID_SELECT, // Select + BUTTON_ID_L, // Ltrigger + BUTTON_ID_R, // Rtrigger + BUTTON_ID_FPS, // A + BUTTON_ID_A, // B + BUTTON_ID_B, // X + BUTTON_ID_MENU, // Y + BUTTON_ID_VOLDOWN, // Vol down + BUTTON_ID_VOLUP, // Vol up + BUTTON_ID_FPS, // Push + BUTTON_ID_MENU // Vol middle +}; + #ifdef WIZ_BUILD #include void *gpsp_gp2x_screen; @@ -124,6 +165,9 @@ void wiz_lcd_set_portrait(int y) gpsp_gp2x_memregl[0x4004>>2] = y ? 0x013f00ef : 0x00ef013f; gpsp_gp2x_memregl[0x4000>>2] |= 1 << 3; old_y = y; + + /* the above ioctl resets LCD timings, so set them here */ + pollux_dpc_set(gpsp_gp2x_memregs, getenv("pollux_dpc_set")); } static void fb_video_exit() @@ -220,16 +264,15 @@ static int get_romdir(char *buff, size_t size) return r; } -void gp2x_init() +void gpsp_plat_init(void) { char buff[256]; gpsp_gp2x_dev = open("/dev/mem", O_RDWR); gpsp_gp2x_dev_audio = open("/dev/mixer", O_RDWR); - gpsp_gp2x_memregl = - (unsigned long *)mmap(0, 0x10000, PROT_READ|PROT_WRITE, MAP_SHARED, + gpsp_gp2x_memregl = (u32 *)mmap(0, 0x10000, PROT_READ|PROT_WRITE, MAP_SHARED, gpsp_gp2x_dev, 0xc0000000); - gpsp_gp2x_memregs = (unsigned short *)gpsp_gp2x_memregl; + gpsp_gp2x_memregs = (u16 *)gpsp_gp2x_memregl; warm_init(); #ifdef WIZ_BUILD gpsp_gp2x_gpiodev = open("/dev/GPIO", O_RDONLY); @@ -242,7 +285,7 @@ void gp2x_init() gp2x_sound_volume(1); } -void gp2x_quit() +void gpsp_plat_quit(void) { char buff1[256], buff2[256]; @@ -289,7 +332,7 @@ void gp2x_sound_volume(u32 volume_up) ioctl(gpsp_gp2x_dev_audio, SOUND_MIXER_WRITE_PCM, &volume); } -u32 gpsp_gp2x_joystick_read(void) +u32 gpsp_plat_joystick_read(void) { #ifdef WIZ_BUILD u32 value = 0; @@ -320,6 +363,40 @@ u32 gpsp_gp2x_joystick_read(void) #endif } +u32 gpsp_plat_buttons_to_cursor(u32 buttons) +{ + gui_action_type new_button = CURSOR_NONE; + + if(buttons & GP2X_A) + new_button = CURSOR_BACK; + + if(buttons & GP2X_X) + new_button = CURSOR_EXIT; + + if(buttons & GP2X_B) + new_button = CURSOR_SELECT; + + if(buttons & GP2X_UP) + new_button = CURSOR_UP; + + if(buttons & GP2X_DOWN) + new_button = CURSOR_DOWN; + + if(buttons & GP2X_LEFT) + new_button = CURSOR_LEFT; + + if(buttons & GP2X_RIGHT) + new_button = CURSOR_RIGHT; + + if(buttons & GP2X_L) + new_button = CURSOR_L; + + if(buttons & GP2X_R) + new_button = CURSOR_R; + + return new_button; +} + // Fout = (m * Fin) / (p * 2^s) void set_FCLK(u32 MHZ) {