mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-29 12:30:17 +02:00
fix the repeat typedef
This commit is contained in:
parent
99d783535e
commit
56482a184a
18
Makefile
18
Makefile
@ -43,10 +43,10 @@ KERNEL_HEADERS_PACKAGE=$(KERNEL_HEADERS_VER).tar.bz2
|
|||||||
KERNEL_HEADERS_URL=
|
KERNEL_HEADERS_URL=
|
||||||
|
|
||||||
# for the device stage
|
# for the device stage
|
||||||
FLASH_TOOL_PATH = ./flash-tool
|
FLASH_TOOL_PATH = ./inflash
|
||||||
FLASH_TOOL_BIN_PATH = $(FLASH_TOOL_PATH)/bin
|
FLASH_TOOL_BIN_PATH = $(FLASH_TOOL_PATH)/bin
|
||||||
STAGE1_PATH = $(FLASH_TOOL_PATH)/device_stage1
|
STAGE1_PATH = $(FLASH_TOOL_PATH)/xburst_stage1
|
||||||
STAGE2_PATH = $(FLASH_TOOL_PATH)/device_stage2
|
STAGE2_PATH = $(FLASH_TOOL_PATH)/xburst_stage2
|
||||||
CROSS_COMPILE ?= mipsel-linux-
|
CROSS_COMPILE ?= mipsel-linux-
|
||||||
|
|
||||||
CFLAGS="-O2"
|
CFLAGS="-O2"
|
||||||
@ -155,8 +155,8 @@ kernel:
|
|||||||
make uImage
|
make uImage
|
||||||
|
|
||||||
### flash-boot
|
### flash-boot
|
||||||
.PHONY: flash-tool
|
.PHONY: inflash
|
||||||
flash-tool: stage1 stage2
|
inflash: stage1 stage2
|
||||||
mkdir -p $(FLASH_TOOL_BIN_PATH)
|
mkdir -p $(FLASH_TOOL_BIN_PATH)
|
||||||
cp $(FLASH_TOOL_PATH)/src/usb_boot.cfg $(FLASH_TOOL_BIN_PATH)
|
cp $(FLASH_TOOL_PATH)/src/usb_boot.cfg $(FLASH_TOOL_BIN_PATH)
|
||||||
cd $(FLASH_TOOL_PATH) && \
|
cd $(FLASH_TOOL_PATH) && \
|
||||||
@ -172,10 +172,14 @@ stage2:
|
|||||||
make CROSS_COMPILE=$(CROSS_COMPILE) -C $(STAGE2_PATH)
|
make CROSS_COMPILE=$(CROSS_COMPILE) -C $(STAGE2_PATH)
|
||||||
|
|
||||||
### clean up
|
### clean up
|
||||||
distclean: clean clean-toolchain
|
distclean: clean clean-inflash clean-toolchain
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
make clean -C flash-tool
|
|
||||||
|
clean-inflash:
|
||||||
|
make clean CROSS_COMPILE=$(CROSS_COMPILE) -C $(STAGE1_PATH)
|
||||||
|
make clean CROSS_COMPILE=$(CROSS_COMPILE) -C $(STAGE2_PATH)
|
||||||
|
make clean -C $(FLASH_TOOL_PATH)
|
||||||
|
|
||||||
clean-toolchain: clean-glibc
|
clean-toolchain: clean-glibc
|
||||||
rm -rf $(TOOLCHAIN_PATH)/$(BINUTILS_VER) binutils
|
rm -rf $(TOOLCHAIN_PATH)/$(BINUTILS_VER) binutils
|
||||||
|
5
README
5
README
@ -41,3 +41,8 @@ The Jz4740 also has an IPU which has the following features:
|
|||||||
* Video frame resize
|
* Video frame resize
|
||||||
* Color space conversion: 420/444/422 YUV to RGB convert
|
* Color space conversion: 420/444/422 YUV to RGB convert
|
||||||
|
|
||||||
|
=debian package=
|
||||||
|
1. run 'dh_make'
|
||||||
|
2. edit the file under 'debian' folder (create by 'dh_make')
|
||||||
|
3. run 'dpkg-buildpackage -rfakeroot' to create the deb package and source
|
||||||
|
package
|
||||||
|
@ -47,8 +47,8 @@
|
|||||||
#define VENDOR_ID 0x601a
|
#define VENDOR_ID 0x601a
|
||||||
#define PRODUCT_ID 0x4740
|
#define PRODUCT_ID 0x4740
|
||||||
|
|
||||||
#define STAGE1_FILE_PATH "/usr/share/inflash/fw.bin"
|
#define STAGE1_FILE_PATH "/usr/share/inflash/xburst_stage1.bin"
|
||||||
#define STAGE2_FILE_PATH "/usr/share/inflash/usb_boot.bin"
|
#define STAGE2_FILE_PATH "/usr/share/inflash/xburst_stage2.bin"
|
||||||
|
|
||||||
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
||||||
|
|
||||||
|
@ -18,15 +18,10 @@
|
|||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
* Boston, MA 02110-1301, USA
|
* Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __JZ4740_H__
|
#ifndef __JZ4740_H__
|
||||||
#define __JZ4740_H__
|
#define __JZ4740_H__
|
||||||
|
|
||||||
typedef unsigned int size_t;
|
#include "typedef.h"
|
||||||
typedef unsigned char u8;
|
|
||||||
typedef unsigned short u16;
|
|
||||||
typedef unsigned int u32;
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
#define UCOS_CSP 0
|
#define UCOS_CSP 0
|
||||||
@ -4864,7 +4859,6 @@ do{ \
|
|||||||
(REG_RTC_HSPR = n ); \
|
(REG_RTC_HSPR = n ); \
|
||||||
}while(0)
|
}while(0)
|
||||||
|
|
||||||
|
|
||||||
#endif /* !__ASSEMBLY__ */
|
#endif /* !__ASSEMBLY__ */
|
||||||
|
|
||||||
#endif /* __JZ4740_H__ */
|
#endif /* __JZ4740_H__ */
|
||||||
|
@ -22,13 +22,11 @@
|
|||||||
#ifndef __JZ4750_H__
|
#ifndef __JZ4750_H__
|
||||||
#define __JZ4750_H__
|
#define __JZ4750_H__
|
||||||
|
|
||||||
|
#include "typedef.h"
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
#define UCOS_CSP 0
|
#define UCOS_CSP 0
|
||||||
|
|
||||||
typedef unsigned char u8;
|
|
||||||
typedef unsigned short u16;
|
|
||||||
typedef unsigned int u32;
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
#if UCOS_CSP
|
#if UCOS_CSP
|
||||||
#define __KERNEL__
|
#define __KERNEL__
|
||||||
|
@ -19,14 +19,12 @@
|
|||||||
#ifndef __NANDLIB_H__
|
#ifndef __NANDLIB_H__
|
||||||
#define __NANDLIB_H__
|
#define __NANDLIB_H__
|
||||||
|
|
||||||
|
#include "typedef.h"
|
||||||
|
|
||||||
#ifndef NULL
|
#ifndef NULL
|
||||||
#define NULL 0
|
#define NULL 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define u8 unsigned char
|
|
||||||
#define u16 unsigned short
|
|
||||||
#define u32 unsigned int
|
|
||||||
|
|
||||||
/* Jz4740 nandflash interface */
|
/* Jz4740 nandflash interface */
|
||||||
unsigned int nand_query_4740(u8 *);
|
unsigned int nand_query_4740(u8 *);
|
||||||
int nand_init_4740(int bus_width, int row_cycle, int page_size, int page_per_block,
|
int nand_init_4740(int bus_width, int row_cycle, int page_size, int page_per_block,
|
||||||
|
Loading…
Reference in New Issue
Block a user