]> sigrok.org Git - libsigrok.git/blob - src/hardware/sysclk-lwla/lwla.h
35e3b0ea59044ffbf10e6005f32bc98765f7db5e
[libsigrok.git] / src / hardware / sysclk-lwla / lwla.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 Daniel Elstner <daniel.kitta@gmail.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef LIBSIGROK_HARDWARE_SYSCLK_LWLA_LWLA_H
21 #define LIBSIGROK_HARDWARE_SYSCLK_LWLA_LWLA_H
22
23 #include <stdint.h>
24 #include <libusb.h>
25 #include <glib.h>
26 #include <libsigrok/libsigrok.h>
27
28 struct sr_usb_dev_inst;
29
30 /* Rotate argument n bits to the left.
31  * This construct is an idiom recognized by GCC as bit rotation.
32  */
33 #define LROTATE(a, n) (((a) << (n)) | ((a) >> (CHAR_BIT * sizeof(a) - (n))))
34
35 /* Convert 16-bit little endian LWLA protocol word to machine word order. */
36 #define LWLA_TO_UINT16(val) GUINT16_FROM_LE(val)
37
38 /* Convert 32-bit mixed endian LWLA protocol word to machine word order. */
39 #define LWLA_TO_UINT32(val) LROTATE(GUINT32_FROM_LE(val), 16)
40
41 /* Convert 16-bit argument to LWLA protocol word. */
42 #define LWLA_WORD(val) GUINT16_TO_LE(val)
43
44 /* Extract 16-bit units in mixed endian order from 32/64-bit value. */
45 #define LWLA_WORD_0(val) GUINT16_TO_LE(((val) >> 16) & 0xFFFF)
46 #define LWLA_WORD_1(val) GUINT16_TO_LE((val) & 0xFFFF)
47 #define LWLA_WORD_2(val) GUINT16_TO_LE(((val) >> 48) & 0xFFFF)
48 #define LWLA_WORD_3(val) GUINT16_TO_LE(((val) >> 32) & 0xFFFF)
49
50 /* Maximum number of 16-bit words sent at a time during acquisition.
51  * Used for allocating the libusb transfer buffer. Keep this even so that
52  * subsequent members are always 32-bit aligned.
53  */
54 #define MAX_ACQ_SEND_LEN16      64 /* 43 for capture setup plus stuffing */
55
56 /* Maximum number of 32-bit words received at a time during acquisition.
57  * This is a multiple of the endpoint buffer size to avoid transfer overflow
58  * conditions.
59  */
60 #define MAX_ACQ_RECV_LEN32      (2 * 512 / 4)
61
62 /* Maximum length of a register read/write sequence.
63  */
64 #define MAX_REG_SEQ_LEN         16
65
66 /* Logic datafeed packet size in bytes.
67  * This is a multiple of both 4 and 5 to match any model's unit size
68  * and memory granularity.
69  */
70 #define PACKET_SIZE             (5000 * 4 * 5)
71
72 /** LWLA protocol command ID codes.
73  */
74 enum command_id {
75         CMD_READ_REG    = 1,
76         CMD_WRITE_REG   = 2,
77         CMD_READ_MEM32  = 3,
78         CMD_READ_MEM36  = 6,
79         CMD_WRITE_LREGS = 7,
80         CMD_READ_LREGS  = 8,
81 };
82
83 /** LWLA capture state flags.
84  * The bit positions are the same as in the LWLA1016 control register.
85  */
86 enum {
87         STATUS_CAPTURING = 1 << 2,
88         STATUS_TRIGGERED = 1 << 5,
89         STATUS_MEM_AVAIL = 1 << 6,
90 };
91
92 /** LWLA1034 run-length encoding states.
93  */
94 enum rle_state {
95         RLE_STATE_DATA,
96         RLE_STATE_LEN
97 };
98
99 /** Register address/value pair.
100  */
101 struct regval {
102         unsigned int reg;
103         uint32_t val;
104 };
105
106 /** LWLA sample acquisition and decompression state.
107  */
108 struct acquisition_state {
109         uint64_t samples_max;   /* maximum number of samples to process */
110         uint64_t samples_done;  /* number of samples sent to the session bus */
111         uint64_t duration_max;  /* maximum capture duration in milliseconds */
112         uint64_t duration_now;  /* running capture duration since trigger */
113
114         uint64_t sample;        /* last sample read from capture memory */
115         uint64_t run_len;       /* remaining run length of current sample */
116
117         struct libusb_transfer *xfer_in;        /* USB in transfer record */
118         struct libusb_transfer *xfer_out;       /* USB out transfer record */
119
120         unsigned int mem_addr_fill;     /* capture memory fill level */
121         unsigned int mem_addr_done;     /* next address to be processed */
122         unsigned int mem_addr_next;     /* start address for next async read */
123         unsigned int mem_addr_stop;     /* end of memory range to be read */
124         unsigned int in_index;          /* position in read transfer buffer */
125         unsigned int out_index;         /* position in logic packet buffer */
126         enum rle_state rle;             /* RLE decoding state */
127
128         gboolean rle_enabled;   /* capturing in timing-state mode */
129         gboolean clock_boost;   /* switch to faster clock during capture */
130         unsigned int status;    /* last received device status */
131
132         unsigned int reg_seq_pos;       /* index of next register/value pair */
133         unsigned int reg_seq_len;       /* length of register/value sequence */
134
135         struct regval reg_sequence[MAX_REG_SEQ_LEN];    /* register buffer */
136         uint32_t xfer_buf_in[MAX_ACQ_RECV_LEN32];       /* USB in buffer */
137         uint16_t xfer_buf_out[MAX_ACQ_SEND_LEN16];      /* USB out buffer */
138         uint8_t out_packet[PACKET_SIZE];                /* logic payload */
139 };
140
141 static inline void lwla_queue_regval(struct acquisition_state *acq,
142                                      unsigned int reg, uint32_t value)
143 {
144         acq->reg_sequence[acq->reg_seq_len].reg = reg;
145         acq->reg_sequence[acq->reg_seq_len].val = value;
146         acq->reg_seq_len++;
147 }
148
149 SR_PRIV int lwla_send_bitstream(struct sr_context *ctx,
150                                 const struct sr_usb_dev_inst *usb,
151                                 const char *name);
152
153 SR_PRIV int lwla_send_command(const struct sr_usb_dev_inst *usb,
154                               const uint16_t *command, int cmd_len);
155
156 SR_PRIV int lwla_receive_reply(const struct sr_usb_dev_inst *usb,
157                                uint32_t *reply, int reply_len, int expect_len);
158
159 SR_PRIV int lwla_read_reg(const struct sr_usb_dev_inst *usb,
160                           uint16_t reg, uint32_t *value);
161
162 SR_PRIV int lwla_write_reg(const struct sr_usb_dev_inst *usb,
163                            uint16_t reg, uint32_t value);
164
165 SR_PRIV int lwla_write_regs(const struct sr_usb_dev_inst *usb,
166                             const struct regval *regvals, int count);
167
168 #endif