summaryrefslogtreecommitdiff
path: root/usb/l0_usb.h
blob: 243f19bbf1ae5870059ae1db905630450d7886b8 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#ifndef L0_USB_H
#define L0_USB_H

#include "generic.h"
#include "l0_usb_def.h"

class USB_l0 : public USB_generic {
	private:
		L0_USB_t& usb;
		
		uint32_t setupbuf[16];
		
		uint32_t buf_end;
		
		uint8_t pending_addr;
	
	protected:
		virtual void hw_set_address(uint8_t addr) {
			usb_rblog.log("SetAddress: %d", addr);
			
			pending_addr = addr;
		}
		
		virtual void hw_conf_ep(uint8_t ep, EPType type, uint32_t size) {
			usb_rblog.log("Configuring EP%02x: size=%d", ep, size);
			
			uint8_t in = ep & 0x80;
			ep &= 0x7f;
			
			uint32_t old_epr = usb.reg.EPR[ep];
			//uint32_t new_epr = 0x3220;
			uint32_t new_epr = 0x8080 | ((type == EPType::Bulk ? 0 : type == EPType::Control ? 1 : type == EPType::Isochronous ? 2 : 3) << 9) | ep;
			
			if(in || ep == 0) {
				usb.bufd[ep].ADDR_TX = buf_end;
				buf_end += size;
				
				new_epr |= (old_epr & 0x0070) ^ 0x0020;
			}
			
			if(!in) {
				usb.bufd[ep].ADDR_RX = buf_end;
				buf_end += size;
				usb.bufd[ep].COUNT_RX = 0x8000 | (1 << 10);
				
				new_epr |= (old_epr & 0x7000) ^ 0x3000;
			}
			
			usb.reg.EPR[ep] = new_epr;
			
			usb_rblog.log("EPR: old=%04x, new=%04x", old_epr, usb.reg.EPR[ep]);
		}
		
		virtual void hw_set_stall(uint8_t ep) {
			usb_rblog.log("Setting stall on EP %d", ep);
			
			usb.reg.EPR[ep] = (usb.reg.EPR[ep] & 0x878f) | 0x2030;
			
			//otg.dev_iep_reg[ep].DIEPCTL |= (1 << 21);
		}
	
	public:
		USB_l0(L0_USB_t& usb_periph, desc_t dev, desc_t conf) : USB_generic(dev, conf), usb(usb_periph) {}
		
		void init() {
			usb.reg.CNTR = 3;
			Time::sleep(10);
			usb.reg.CNTR = 1;
			Time::sleep(10);
			// Exit power down mode.
			usb.reg.CNTR = 0;
		}
		
		void process() {
			uint32_t istr = usb.reg.ISTR;
			
			if(istr & (1 << 10)) {
				usb_rblog.log("USB Reset");
				
				buf_end = 0x40;
				
				usb.reg.DADDR = 0x80;
				
				handle_reset();
				
				usb.reg.ISTR = ~(1 << 10);
				
				return;
			}
			
			if(istr & (1 << 15)) {
				usb_rblog.log("USB Transfer: %02x", istr & 0x1f);
				
				uint32_t ep = istr & 0xf;
				uint32_t dir = istr & 0x10;
				
				usb_rblog.log("EPR%d: %04x", ep, usb.reg.EPR[ep]);
				
				if(dir) {
					// RX.
					
					usb_rblog.log("RXBUF: ADDR: %04x, COUNT: %04x", usb.bufd[ep].ADDR_RX, usb.bufd[ep].COUNT_RX);
					
					uint32_t len = usb.bufd[ep].COUNT_RX & 0x03ff;
					
					if(usb.reg.EPR[ep] & (1 << 11)) {
						usb_rblog.log("SETUP packet received");
						
						read(0, setupbuf, 8);
						
						handle_setup(setupbuf);
						
					} else {
						usb_rblog.log("OUT packet received");
						
						handle_out(ep, len);
					}
					
					//usb.reg.EPR[ep] = 0x9280;
					//usb.reg.EPR[ep] &= 0x078f;
					
					usb.reg.EPR[ep] = (usb.reg.EPR[ep] & 0x078f) | 0x1000;
				} else {
					// TX.
					
					usb_rblog.log("TXBUF: ADDR: %04x, COUNT: %04x", usb.bufd[ep].ADDR_TX, usb.bufd[ep].COUNT_TX);
					
					if(pending_addr) {
						usb_rblog.log("Actually changing addr to: %d", pending_addr);
						
						usb.reg.DADDR = 0x80 | pending_addr;
						
						pending_addr = 0;
					}
					
					usb.reg.EPR[ep] &= 0x870f;
				}
				usb_rblog.log("Leaving: EPR%d: %04x", ep, usb.reg.EPR[ep]);
			}
		}
		
		virtual bool ep_ready(uint32_t ep) {
			return (usb.reg.EPR[ep] & 0x30) == 0x20;
		}
		
		virtual void write(uint32_t ep, uint32_t* bufp, uint32_t len) {
			usb_rblog.log("Writing, ep=%d, len=%d", ep, len);
			
			uint16_t* p = (uint16_t*)bufp;
			uint32_t base = usb.bufd[ep].ADDR_TX >> 1;
			
			for(uint32_t i = 0; i < len; i += 2) {
				usb.buf[base + (i >> 1)] = *p++;
			}
			
			usb.bufd[ep].COUNT_TX = len;
			usb.reg.EPR[ep] = (usb.reg.EPR[ep] & 0x870f) | 0x0010;
		}
		
		virtual uint32_t read(uint32_t ep, uint32_t* bufp, uint32_t len) {
			usb_rblog.log("Reading, ep=%d, len=%d", ep, len);
			
			uint16_t* p = (uint16_t*)bufp;
			uint32_t base = usb.bufd[ep].ADDR_RX >> 1;
			
			for(uint32_t i = 0; i < len; i += 2) {
				*p++ = uint16_t(usb.buf[base + (i >> 1)]);
			}
			
			return len;
		}
};

#endif