summaryrefslogtreecommitdiff
path: root/firmware/src/pcd.h
blob: 77c99b2cf3e0a1da5708e1175d5be7217f1afe4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef _OPENPCD_H
#define _OPENPCD_H
/* pcd.h - OpenPCD USB protocol definitions
 * (C) 2006 Harald Welte <laforge@gnumonks.org>
 */

#include <sys/types.h>

struct opcd_cmd_hdr {
	u_int8_t cmd;
	u_int8_t arg1;
	u_int16_t arg2;
} __attribute__ ((packed));

enum opcd_cmd {
	OPCD_CMD_REG_READ	= 0x01,	/* Transparent Read of RC632 REG */
	OPCD_CMD_REG_WRITE	= 0x02, /* Transparent Write to RC632 REG */

	OPCD_CMD_FIFO_READ	= 0x03, /* Transparent Read fron RC632 FIFO */
	OPCD_CMD_FIFO_WRITE	= 0x04, /* Transparent Write to RC632 FIFO */

	OPCD_CMD_VFIFO_READ	= 0x05, /* Read bytes from virtual FIFO */
	OPCD_CMD_VFIFO_WRITE	= 0x06, /* Write bytes to virtual FIFO */
	OPCD_CMD_VFIFO_MODE	= 0x07, /* Set Virtual FIFO mode */

	OPCD_CMD_REG_SETBIT	= 0x08,	/* Set a bit in RC632 Register */
	OPCD_CMD_REG_CLRBIT	= 0x09, /* Clear a bit in RC632 Register */
};

struct opcd_status_hdr {
	u_int8_t cause,		/* interrupt cause register RC632 */
	u_int8_t prim_status,	/* primary status register RC632 */ 
} __attribute__ ((packed));

#endif /* _OPENPCD_H */
personal git repositories of Harald Welte. Your mileage may vary