blob: 42d339fac3e57123a7aee8d1c78bf0ba5712102d [file] [log] [blame]
Lars Poeschelf01312d2012-11-05 15:48:23 +01001/*
2 * include/linux/mfd/viperboard.h
3 *
4 * Nano River Technologies viperboard definitions
5 *
6 * (C) 2012 by Lemonage GmbH
7 * Author: Lars Poeschel <poeschel@lemonage.de>
8 * All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 *
15 */
16
17#ifndef __MFD_VIPERBOARD_H__
18#define __MFD_VIPERBOARD_H__
19
20#include <linux/types.h>
21#include <linux/usb.h>
22
23#define VPRBRD_EP_OUT 0x02
24#define VPRBRD_EP_IN 0x86
25
26#define VPRBRD_I2C_MSG_LEN 512 /* max length of a msg on USB level */
27
28#define VPRBRD_I2C_FREQ_6MHZ 1 /* 6 MBit/s */
29#define VPRBRD_I2C_FREQ_3MHZ 2 /* 3 MBit/s */
30#define VPRBRD_I2C_FREQ_1MHZ 3 /* 1 MBit/s */
31#define VPRBRD_I2C_FREQ_FAST 4 /* 400 kbit/s */
32#define VPRBRD_I2C_FREQ_400KHZ VPRBRD_I2C_FREQ_FAST
33#define VPRBRD_I2C_FREQ_200KHZ 5 /* 200 kbit/s */
34#define VPRBRD_I2C_FREQ_STD 6 /* 100 kbit/s */
35#define VPRBRD_I2C_FREQ_100KHZ VPRBRD_I2C_FREQ_STD
36#define VPRBRD_I2C_FREQ_10KHZ 7 /* 10 kbit/s */
37
38#define VPRBRD_I2C_CMD_WRITE 0x00
39#define VPRBRD_I2C_CMD_READ 0x01
40#define VPRBRD_I2C_CMD_ADDR 0x02
41
42#define VPRBRD_USB_TYPE_OUT 0x40
43#define VPRBRD_USB_TYPE_IN 0xc0
44#define VPRBRD_USB_TIMEOUT_MS 100
45#define VPRBRD_USB_REQUEST_MAJOR 0xea
46#define VPRBRD_USB_REQUEST_MINOR 0xeb
Lars Poeschel9d5b72d2012-11-05 15:48:24 +010047#define VPRBRD_USB_REQUEST_GPIOA 0xed
48#define VPRBRD_USB_REQUEST_GPIOB 0xdd
Lars Poeschelf01312d2012-11-05 15:48:23 +010049
50struct vprbrd_i2c_write_hdr {
51 u8 cmd;
52 u16 addr;
53 u8 len1;
54 u8 len2;
55 u8 last;
56 u8 chan;
57 u16 spi;
58} __packed;
59
60struct vprbrd_i2c_read_hdr {
61 u8 cmd;
62 u16 addr;
63 u8 len0;
64 u8 len1;
65 u8 len2;
66 u8 len3;
67 u8 len4;
68 u8 len5;
69 u16 tf1; /* transfer 1 length */
70 u16 tf2; /* transfer 2 length */
71} __packed;
72
73struct vprbrd_i2c_status {
74 u8 unknown[11];
75 u8 status;
76} __packed;
77
78struct vprbrd_i2c_write_msg {
79 struct vprbrd_i2c_write_hdr header;
80 u8 data[VPRBRD_I2C_MSG_LEN
81 - sizeof(struct vprbrd_i2c_write_hdr)];
82} __packed;
83
84struct vprbrd_i2c_read_msg {
85 struct vprbrd_i2c_read_hdr header;
86 u8 data[VPRBRD_I2C_MSG_LEN
87 - sizeof(struct vprbrd_i2c_read_hdr)];
88} __packed;
89
90struct vprbrd_i2c_addr_msg {
91 u8 cmd;
92 u8 addr;
93 u8 unknown1;
94 u16 len;
95 u8 unknown2;
96 u8 unknown3;
97} __packed;
98
99/* Structure to hold all device specific stuff */
100struct vprbrd {
101 struct usb_device *usb_dev; /* the usb device for this device */
102 struct mutex lock;
103 u8 buf[sizeof(struct vprbrd_i2c_write_msg)];
104 struct platform_device pdev;
105};
106
107#endif /* __MFD_VIPERBOARD_H__ */