diff --git a/Kbuild b/Kbuild
index a34841f..87940ab 100755
|
a
|
b
|
|
| 38 | 38 | services4/srvkm/bridged/bridged_pvr_bridge.c \ |
| 39 | 39 | services4/srvkm/bridged/bridged_support.c \ |
| 40 | 40 | services4/srvkm/bridged/sgx/bridged_sgx_bridge.c \ |
| 41 | | services4/system/$(TI_PLATFORM)/sysutils.c \ |
| 42 | | services4/system/$(TI_PLATFORM)/sysconfig.c \ |
| | 41 | services4/system/omap3630/sysutils.c \ |
| | 42 | services4/system/omap3630/sysconfig.c \ |
| 43 | 43 | |
| 44 | 44 | EXTRA_CFLAGS += -I$(src)/include4 |
| 45 | 45 | EXTRA_CFLAGS += -I$(src)/services4/include |
| … |
… |
|
| 49 | 49 | EXTRA_CFLAGS += -I$(src)/services4/srvkm/devices/sgx |
| 50 | 50 | EXTRA_CFLAGS += -I$(src)/services4/srvkm/env/linux |
| 51 | 51 | EXTRA_CFLAGS += -I$(src)/services4/system/include |
| 52 | | EXTRA_CFLAGS += -I$(src)/services4/system/$(TI_PLATFORM) |
| | 52 | EXTRA_CFLAGS += -I$(src)/services4/system/omap3630 |
| 53 | 53 | EXTRA_CFLAGS += -I$(src)/services4/srvkm/bridged/sgx |
| 54 | 54 | |
| 55 | 55 | EXTRA_CFLAGS += $(ALL_CFLAGS) |
diff --git a/Makefile b/Makefile
index 7fe1828..ceaf036 100755
|
a
|
b
|
|
| 1 | | export KERNELDIR = /opt/oe/stuff/build/tmp/work/beagleboard-angstrom-linux-gnueabi/linux-omap-2.6.29-r44/git/ |
| | 1 | export KERNELDIR = ENTER YOUR KERNEL DIR HERE! |
| 2 | 2 | |
| 3 | 3 | export KERNEL_PATH=$(KERNELDIR) |
| 4 | 4 | export KERNEL_SRC=$(KERNELDIR) |
| … |
… |
|
| 44 | 44 | endif |
| 45 | 45 | endif |
| 46 | 46 | |
| | 47 | TI_PLATFORM = omap3630 |
| | 48 | CORE = -DSGX530 -DSUPPORT_SGX530 -DSGX_CORE_REV=125 |
| | 49 | |
| 47 | 50 | SUPPORT_SGX = 1 |
| 48 | 51 | SUPPORT_HW_RECOVERY = 1 |
| 49 | 52 | SUPPORT_SGX_HWPERF = 1 |
diff --git a/services4/3rdparty/bufferclass_ti/bc_cat.c b/services4/3rdparty/bufferclass_ti/bc_cat.c
index 79e7b85..ee7280d 100755
|
a
|
b
|
|
| 600 | 600 | /* texture buffer width should be multiple of 8 for OMAP3 ES3.x, |
| 601 | 601 | * or 32 for ES2.x */ |
| 602 | 602 | |
| 603 | | #ifdef PLAT_TI8168 |
| | 603 | //#ifdef PLAT_TI8168 |
| 604 | 604 | width_align = 8; |
| 605 | | #else |
| 606 | | width_align = cpu_is_omap3530() && ( omap_rev() < OMAP3430_REV_ES3_0 ) ? 32 : 8; |
| 607 | | #endif |
| | 605 | //#else |
| | 606 | // width_align = cpu_is_omap3530() && ( omap_rev() < OMAP3430_REV_ES3_0 ) ? 32 : 8; |
| | 607 | //#endif |
| 608 | 608 | |
| 609 | 609 | major = register_chrdev(0, DEVNAME, &bc_cat_fops); |
| 610 | 610 | |
diff --git a/services4/3rdparty/dc_omap3430_linux/omaplfb_linux.c b/services4/3rdparty/dc_omap3430_linux/omaplfb_linux.c
index fa52836..a95a453 100755
|
a
|
b
|
|
| 46 | 46 | |
| 47 | 47 | #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)) |
| 48 | 48 | #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,31)) |
| 49 | | #include <plat/display.h> |
| | 49 | #include <mach/display.h> |
| 50 | 50 | #else |
| 51 | 51 | #include <mach/display.h> |
| 52 | 52 | #endif |
| … |
… |
|
| 61 | 61 | extern void omap_dispc_free_irq(unsigned long, void (*)(void *), void *); |
| 62 | 62 | extern void omap_dispc_set_plane_base(int plane, IMG_UINT32 phys_addr); |
| 63 | 63 | #else |
| 64 | | #include <plat/display.h> |
| | 64 | #include <mach/display.h> |
| 65 | 65 | #include <linux/console.h> |
| 66 | 66 | #include <linux/fb.h> |
| 67 | 67 | static omap_dispc_isr_t *pOMAPLFBVSyncISRHandle = NULL; |