aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/machine/machine_atsamd21g18.go
blob: 9b78ad336773bad2b7263d0ee34e331e778fcad1 (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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
//go:build sam && atsamd21 && atsamd21g18

// Peripheral abstraction layer for the atsamd21.
//
// Datasheet:
// http://ww1.microchip.com/downloads/en/DeviceDoc/SAMD21-Family-DataSheet-DS40001882D.pdf
package machine

import (
	"device/sam"
	"runtime/interrupt"
)

var (
	sercomUSART0 = UART{Buffer: NewRingBuffer(), Bus: sam.SERCOM0_USART, SERCOM: 0}
	sercomUSART1 = UART{Buffer: NewRingBuffer(), Bus: sam.SERCOM1_USART, SERCOM: 1}
	sercomUSART2 = UART{Buffer: NewRingBuffer(), Bus: sam.SERCOM2_USART, SERCOM: 2}
	sercomUSART3 = UART{Buffer: NewRingBuffer(), Bus: sam.SERCOM3_USART, SERCOM: 3}
	sercomUSART4 = UART{Buffer: NewRingBuffer(), Bus: sam.SERCOM4_USART, SERCOM: 4}
	sercomUSART5 = UART{Buffer: NewRingBuffer(), Bus: sam.SERCOM5_USART, SERCOM: 5}

	sercomI2CM0 = &I2C{Bus: sam.SERCOM0_I2CM, SERCOM: 0}
	sercomI2CM1 = &I2C{Bus: sam.SERCOM1_I2CM, SERCOM: 1}
	sercomI2CM2 = &I2C{Bus: sam.SERCOM2_I2CM, SERCOM: 2}
	sercomI2CM3 = &I2C{Bus: sam.SERCOM3_I2CM, SERCOM: 3}
	sercomI2CM4 = &I2C{Bus: sam.SERCOM4_I2CM, SERCOM: 4}
	sercomI2CM5 = &I2C{Bus: sam.SERCOM5_I2CM, SERCOM: 5}

	sercomSPIM0 = SPI{Bus: sam.SERCOM0_SPI, SERCOM: 0}
	sercomSPIM1 = SPI{Bus: sam.SERCOM1_SPI, SERCOM: 1}
	sercomSPIM2 = SPI{Bus: sam.SERCOM2_SPI, SERCOM: 2}
	sercomSPIM3 = SPI{Bus: sam.SERCOM3_SPI, SERCOM: 3}
	sercomSPIM4 = SPI{Bus: sam.SERCOM4_SPI, SERCOM: 4}
	sercomSPIM5 = SPI{Bus: sam.SERCOM5_SPI, SERCOM: 5}
)

func init() {
	sercomUSART0.Interrupt = interrupt.New(sam.IRQ_SERCOM0, sercomUSART0.handleInterrupt)
	sercomUSART1.Interrupt = interrupt.New(sam.IRQ_SERCOM1, sercomUSART1.handleInterrupt)
	sercomUSART2.Interrupt = interrupt.New(sam.IRQ_SERCOM2, sercomUSART2.handleInterrupt)
	sercomUSART3.Interrupt = interrupt.New(sam.IRQ_SERCOM3, sercomUSART3.handleInterrupt)
	sercomUSART4.Interrupt = interrupt.New(sam.IRQ_SERCOM4, sercomUSART4.handleInterrupt)
	sercomUSART5.Interrupt = interrupt.New(sam.IRQ_SERCOM5, sercomUSART5.handleInterrupt)
}

// Return the register and mask to enable a given GPIO pin. This can be used to
// implement bit-banged drivers.
func (p Pin) PortMaskSet() (*uint32, uint32) {
	// Note: using PORT_IOBUS for faster pin accesses.
	// The regular PORT registers appear to take around 4 clock cycles to store,
	// which is longer than the ws2812 driver expects. The IOBUS is is fast
	// enough to avoid this issue.
	if p < 32 {
		return &sam.PORT_IOBUS.OUTSET0.Reg, 1 << uint8(p)
	} else {
		return &sam.PORT_IOBUS.OUTSET1.Reg, 1 << uint8(p-32)
	}
}

// Return the register and mask to disable a given port. This can be used to
// implement bit-banged drivers.
func (p Pin) PortMaskClear() (*uint32, uint32) {
	if p < 32 {
		return &sam.PORT_IOBUS.OUTCLR0.Reg, 1 << uint8(p)
	} else {
		return &sam.PORT_IOBUS.OUTCLR1.Reg, 1 << uint8(p-32)
	}
}

// Set the pin to high or low.
// Warning: only use this on an output pin!
func (p Pin) Set(high bool) {
	if p < 32 {
		if high {
			sam.PORT.OUTSET0.Set(1 << uint8(p))
		} else {
			sam.PORT.OUTCLR0.Set(1 << uint8(p))
		}
	} else {
		if high {
			sam.PORT.OUTSET1.Set(1 << uint8(p-32))
		} else {
			sam.PORT.OUTCLR1.Set(1 << uint8(p-32))
		}
	}
}

// Get returns the current value of a GPIO pin when configured as an input or as
// an output.
func (p Pin) Get() bool {
	if p < 32 {
		return (sam.PORT.IN0.Get()>>uint8(p))&1 > 0
	} else {
		return (sam.PORT.IN1.Get()>>uint8(p-32))&1 > 0
	}
}

// Configure this pin with the given configuration.
func (p Pin) Configure(config PinConfig) {
	switch config.Mode {
	case PinOutput:
		if p < 32 {
			sam.PORT.DIRSET0.Set(1 << uint8(p))
			// output is also set to input enable so pin can read back its own value
			p.setPinCfg(sam.PORT_PINCFG0_INEN)
		} else {
			sam.PORT.DIRSET1.Set(1 << uint8(p-32))
			// output is also set to input enable so pin can read back its own value
			p.setPinCfg(sam.PORT_PINCFG0_INEN)
		}

	case PinInput:
		if p < 32 {
			sam.PORT.DIRCLR0.Set(1 << uint8(p))
			p.setPinCfg(sam.PORT_PINCFG0_INEN)
		} else {
			sam.PORT.DIRCLR1.Set(1 << uint8(p-32))
			p.setPinCfg(sam.PORT_PINCFG0_INEN)
		}

	case PinInputPulldown:
		if p < 32 {
			sam.PORT.DIRCLR0.Set(1 << uint8(p))
			sam.PORT.OUTCLR0.Set(1 << uint8(p))
			p.setPinCfg(sam.PORT_PINCFG0_INEN | sam.PORT_PINCFG0_PULLEN)
		} else {
			sam.PORT.DIRCLR1.Set(1 << uint8(p-32))
			sam.PORT.OUTCLR1.Set(1 << uint8(p-32))
			p.setPinCfg(sam.PORT_PINCFG0_INEN | sam.PORT_PINCFG0_PULLEN)
		}

	case PinInputPullup:
		if p < 32 {
			sam.PORT.DIRCLR0.Set(1 << uint8(p))
			sam.PORT.OUTSET0.Set(1 << uint8(p))
			p.setPinCfg(sam.PORT_PINCFG0_INEN | sam.PORT_PINCFG0_PULLEN)
		} else {
			sam.PORT.DIRCLR1.Set(1 << uint8(p-32))
			sam.PORT.OUTSET1.Set(1 << uint8(p-32))
			p.setPinCfg(sam.PORT_PINCFG0_INEN | sam.PORT_PINCFG0_PULLEN)
		}

	case PinSERCOM:
		if p&1 > 0 {
			// odd pin, so save the even pins
			val := p.getPMux() & sam.PORT_PMUX0_PMUXE_Msk
			p.setPMux(val | (uint8(PinSERCOM) << sam.PORT_PMUX0_PMUXO_Pos))
		} else {
			// even pin, so save the odd pins
			val := p.getPMux() & sam.PORT_PMUX0_PMUXO_Msk
			p.setPMux(val | (uint8(PinSERCOM) << sam.PORT_PMUX0_PMUXE_Pos))
		}
		// enable port config
		p.setPinCfg(sam.PORT_PINCFG0_PMUXEN | sam.PORT_PINCFG0_DRVSTR | sam.PORT_PINCFG0_INEN)

	case PinSERCOMAlt:
		if p&1 > 0 {
			// odd pin, so save the even pins
			val := p.getPMux() & sam.PORT_PMUX0_PMUXE_Msk
			p.setPMux(val | (uint8(PinSERCOMAlt) << sam.PORT_PMUX0_PMUXO_Pos))
		} else {
			// even pin, so save the odd pins
			val := p.getPMux() & sam.PORT_PMUX0_PMUXO_Msk
			p.setPMux(val | (uint8(PinSERCOMAlt) << sam.PORT_PMUX0_PMUXE_Pos))
		}
		// enable port config
		p.setPinCfg(sam.PORT_PINCFG0_PMUXEN | sam.PORT_PINCFG0_DRVSTR)

	case PinCom:
		if p&1 > 0 {
			// odd pin, so save the even pins
			val := p.getPMux() & sam.PORT_PMUX0_PMUXE_Msk
			p.setPMux(val | (uint8(PinCom) << sam.PORT_PMUX0_PMUXO_Pos))
		} else {
			// even pin, so save the odd pins
			val := p.getPMux() & sam.PORT_PMUX0_PMUXO_Msk
			p.setPMux(val | (uint8(PinCom) << sam.PORT_PMUX0_PMUXE_Pos))
		}
		// enable port config
		p.setPinCfg(sam.PORT_PINCFG0_PMUXEN)
	case PinAnalog:
		if p&1 > 0 {
			// odd pin, so save the even pins
			val := p.getPMux() & sam.PORT_PMUX0_PMUXE_Msk
			p.setPMux(val | (uint8(PinAnalog) << sam.PORT_PMUX0_PMUXO_Pos))
		} else {
			// even pin, so save the odd pins
			val := p.getPMux() & sam.PORT_PMUX0_PMUXO_Msk
			p.setPMux(val | (uint8(PinAnalog) << sam.PORT_PMUX0_PMUXE_Pos))
		}
		// enable port config
		p.setPinCfg(sam.PORT_PINCFG0_PMUXEN | sam.PORT_PINCFG0_DRVSTR)
	}
}

// getPMux returns the value for the correct PMUX register for this pin.
func (p Pin) getPMux() uint8 {
	switch uint8(p) >> 1 {
	case 0:
		return sam.PORT.PMUX0_0.Get()
	case 1:
		return sam.PORT.PMUX0_1.Get()
	case 2:
		return sam.PORT.PMUX0_2.Get()
	case 3:
		return sam.PORT.PMUX0_3.Get()
	case 4:
		return sam.PORT.PMUX0_4.Get()
	case 5:
		return sam.PORT.PMUX0_5.Get()
	case 6:
		return sam.PORT.PMUX0_6.Get()
	case 7:
		return sam.PORT.PMUX0_7.Get()
	case 8:
		return sam.PORT.PMUX0_8.Get()
	case 9:
		return sam.PORT.PMUX0_9.Get()
	case 10:
		return sam.PORT.PMUX0_10.Get()
	case 11:
		return sam.PORT.PMUX0_11.Get()
	case 12:
		return sam.PORT.PMUX0_12.Get()
	case 13:
		return sam.PORT.PMUX0_13.Get()
	case 14:
		return sam.PORT.PMUX0_14.Get()
	case 15:
		return sam.PORT.PMUX0_15.Get()
	case 16:
		return uint8(sam.PORT.PMUX1_0.Get()>>0) & 0xff
	case 17:
		return uint8(sam.PORT.PMUX1_0.Get()>>8) & 0xff
	case 18:
		return uint8(sam.PORT.PMUX1_0.Get()>>16) & 0xff
	case 19:
		return uint8(sam.PORT.PMUX1_0.Get()>>24) & 0xff
	case 20:
		return uint8(sam.PORT.PMUX1_4.Get()>>0) & 0xff
	case 21:
		return uint8(sam.PORT.PMUX1_4.Get()>>8) & 0xff
	case 22:
		return uint8(sam.PORT.PMUX1_4.Get()>>16) & 0xff
	case 23:
		return uint8(sam.PORT.PMUX1_4.Get()>>24) & 0xff
	case 24:
		return uint8(sam.PORT.PMUX1_8.Get()>>0) & 0xff
	case 25:
		return uint8(sam.PORT.PMUX1_8.Get()>>8) & 0xff
	case 26:
		return uint8(sam.PORT.PMUX1_8.Get()>>16) & 0xff
	case 27:
		return uint8(sam.PORT.PMUX1_8.Get()>>24) & 0xff
	case 28:
		return uint8(sam.PORT.PMUX1_12.Get()>>0) & 0xff
	case 29:
		return uint8(sam.PORT.PMUX1_12.Get()>>8) & 0xff
	case 30:
		return uint8(sam.PORT.PMUX1_12.Get()>>16) & 0xff
	case 31:
		return uint8(sam.PORT.PMUX1_12.Get()>>24) & 0xff
	default:
		return 0
	}
}

// setPMux sets the value for the correct PMUX register for this pin.
func (p Pin) setPMux(val uint8) {
	switch uint8(p) >> 1 {
	case 0:
		sam.PORT.PMUX0_0.Set(val)
	case 1:
		sam.PORT.PMUX0_1.Set(val)
	case 2:
		sam.PORT.PMUX0_2.Set(val)
	case 3:
		sam.PORT.PMUX0_3.Set(val)
	case 4:
		sam.PORT.PMUX0_4.Set(val)
	case 5:
		sam.PORT.PMUX0_5.Set(val)
	case 6:
		sam.PORT.PMUX0_6.Set(val)
	case 7:
		sam.PORT.PMUX0_7.Set(val)
	case 8:
		sam.PORT.PMUX0_8.Set(val)
	case 9:
		sam.PORT.PMUX0_9.Set(val)
	case 10:
		sam.PORT.PMUX0_10.Set(val)
	case 11:
		sam.PORT.PMUX0_11.Set(val)
	case 12:
		sam.PORT.PMUX0_12.Set(val)
	case 13:
		sam.PORT.PMUX0_13.Set(val)
	case 14:
		sam.PORT.PMUX0_14.Set(val)
	case 15:
		sam.PORT.PMUX0_15.Set(val)
	case 16:
		sam.PORT.PMUX1_0.ReplaceBits(uint32(val), 0xff, 0)
	case 17:
		sam.PORT.PMUX1_0.ReplaceBits(uint32(val), 0xff, 8)
	case 18:
		sam.PORT.PMUX1_0.ReplaceBits(uint32(val), 0xff, 16)
	case 19:
		sam.PORT.PMUX1_0.ReplaceBits(uint32(val), 0xff, 24)
	case 20:
		sam.PORT.PMUX1_4.ReplaceBits(uint32(val), 0xff, 0)
	case 21:
		sam.PORT.PMUX1_4.ReplaceBits(uint32(val), 0xff, 8)
	case 22:
		sam.PORT.PMUX1_4.ReplaceBits(uint32(val), 0xff, 16)
	case 23:
		sam.PORT.PMUX1_4.ReplaceBits(uint32(val), 0xff, 24)
	case 24:
		sam.PORT.PMUX1_8.ReplaceBits(uint32(val), 0xff, 0)
	case 25:
		sam.PORT.PMUX1_8.ReplaceBits(uint32(val), 0xff, 8)
	case 26:
		sam.PORT.PMUX1_8.ReplaceBits(uint32(val), 0xff, 16)
	case 27:
		sam.PORT.PMUX1_8.ReplaceBits(uint32(val), 0xff, 24)
	case 28:
		sam.PORT.PMUX1_12.ReplaceBits(uint32(val), 0xff, 0)
	case 29:
		sam.PORT.PMUX1_12.ReplaceBits(uint32(val), 0xff, 8)
	case 30:
		sam.PORT.PMUX1_12.ReplaceBits(uint32(val), 0xff, 16)
	case 31:
		sam.PORT.PMUX1_12.ReplaceBits(uint32(val), 0xff, 24)
	}
}

// getPinCfg returns the value for the correct PINCFG register for this pin.
func (p Pin) getPinCfg() uint8 {
	switch p {
	case 0:
		return sam.PORT.PINCFG0_0.Get()
	case 1:
		return sam.PORT.PINCFG0_1.Get()
	case 2:
		return sam.PORT.PINCFG0_2.Get()
	case 3:
		return sam.PORT.PINCFG0_3.Get()
	case 4:
		return sam.PORT.PINCFG0_4.Get()
	case 5:
		return sam.PORT.PINCFG0_5.Get()
	case 6:
		return sam.PORT.PINCFG0_6.Get()
	case 7:
		return sam.PORT.PINCFG0_7.Get()
	case 8:
		return sam.PORT.PINCFG0_8.Get()
	case 9:
		return sam.PORT.PINCFG0_9.Get()
	case 10:
		return sam.PORT.PINCFG0_10.Get()
	case 11:
		return sam.PORT.PINCFG0_11.Get()
	case 12:
		return sam.PORT.PINCFG0_12.Get()
	case 13:
		return sam.PORT.PINCFG0_13.Get()
	case 14:
		return sam.PORT.PINCFG0_14.Get()
	case 15:
		return sam.PORT.PINCFG0_15.Get()
	case 16:
		return sam.PORT.PINCFG0_16.Get()
	case 17:
		return sam.PORT.PINCFG0_17.Get()
	case 18:
		return sam.PORT.PINCFG0_18.Get()
	case 19:
		return sam.PORT.PINCFG0_19.Get()
	case 20:
		return sam.PORT.PINCFG0_20.Get()
	case 21:
		return sam.PORT.PINCFG0_21.Get()
	case 22:
		return sam.PORT.PINCFG0_22.Get()
	case 23:
		return sam.PORT.PINCFG0_23.Get()
	case 24:
		return sam.PORT.PINCFG0_24.Get()
	case 25:
		return sam.PORT.PINCFG0_25.Get()
	case 26:
		return sam.PORT.PINCFG0_26.Get()
	case 27:
		return sam.PORT.PINCFG0_27.Get()
	case 28:
		return sam.PORT.PINCFG0_28.Get()
	case 29:
		return sam.PORT.PINCFG0_29.Get()
	case 30:
		return sam.PORT.PINCFG0_30.Get()
	case 31:
		return sam.PORT.PINCFG0_31.Get()
	case 32: // PB00
		return uint8(sam.PORT.PINCFG1_0.Get()>>0) & 0xff
	case 33: // PB01
		return uint8(sam.PORT.PINCFG1_0.Get()>>8) & 0xff
	case 34: // PB02
		return uint8(sam.PORT.PINCFG1_0.Get()>>16) & 0xff
	case 35: // PB03
		return uint8(sam.PORT.PINCFG1_0.Get()>>24) & 0xff
	case 36: // PB04
		return uint8(sam.PORT.PINCFG1_4.Get()>>0) & 0xff
	case 37: // PB05
		return uint8(sam.PORT.PINCFG1_4.Get()>>8) & 0xff
	case 38: // PB06
		return uint8(sam.PORT.PINCFG1_4.Get()>>16) & 0xff
	case 39: // PB07
		return uint8(sam.PORT.PINCFG1_4.Get()>>24) & 0xff
	case 40: // PB08
		return uint8(sam.PORT.PINCFG1_8.Get()>>0) & 0xff
	case 41: // PB09
		return uint8(sam.PORT.PINCFG1_8.Get()>>8) & 0xff
	case 42: // PB10
		return uint8(sam.PORT.PINCFG1_8.Get()>>16) & 0xff
	case 43: // PB11
		return uint8(sam.PORT.PINCFG1_8.Get()>>24) & 0xff
	case 44: // PB12
		return uint8(sam.PORT.PINCFG1_12.Get()>>0) & 0xff
	case 45: // PB13
		return uint8(sam.PORT.PINCFG1_12.Get()>>8) & 0xff
	case 46: // PB14
		return uint8(sam.PORT.PINCFG1_12.Get()>>16) & 0xff
	case 47: // PB15
		return uint8(sam.PORT.PINCFG1_12.Get()>>24) & 0xff
	case 48: // PB16
		return uint8(sam.PORT.PINCFG1_16.Get()>>0) & 0xff
	case 49: // PB17
		return uint8(sam.PORT.PINCFG1_16.Get()>>8) & 0xff
	case 50: // PB18
		return uint8(sam.PORT.PINCFG1_16.Get()>>16) & 0xff
	case 51: // PB19
		return uint8(sam.PORT.PINCFG1_16.Get()>>24) & 0xff
	case 52: // PB20
		return uint8(sam.PORT.PINCFG1_20.Get()>>0) & 0xff
	case 53: // PB21
		return uint8(sam.PORT.PINCFG1_20.Get()>>8) & 0xff
	case 54: // PB22
		return uint8(sam.PORT.PINCFG1_20.Get()>>16) & 0xff
	case 55: // PB23
		return uint8(sam.PORT.PINCFG1_20.Get()>>24) & 0xff
	case 56: // PB24
		return uint8(sam.PORT.PINCFG1_24.Get()>>0) & 0xff
	case 57: // PB25
		return uint8(sam.PORT.PINCFG1_24.Get()>>8) & 0xff
	case 58: // PB26
		return uint8(sam.PORT.PINCFG1_24.Get()>>16) & 0xff
	case 59: // PB27
		return uint8(sam.PORT.PINCFG1_24.Get()>>24) & 0xff
	case 60: // PB28
		return uint8(sam.PORT.PINCFG1_28.Get()>>0) & 0xff
	case 61: // PB29
		return uint8(sam.PORT.PINCFG1_28.Get()>>8) & 0xff
	case 62: // PB30
		return uint8(sam.PORT.PINCFG1_28.Get()>>16) & 0xff
	case 63: // PB31
		return uint8(sam.PORT.PINCFG1_28.Get()>>24) & 0xff
	default:
		return 0
	}
}

// setPinCfg sets the value for the correct PINCFG register for this pin.
func (p Pin) setPinCfg(val uint8) {
	switch p {
	case 0:
		sam.PORT.PINCFG0_0.Set(val)
	case 1:
		sam.PORT.PINCFG0_1.Set(val)
	case 2:
		sam.PORT.PINCFG0_2.Set(val)
	case 3:
		sam.PORT.PINCFG0_3.Set(val)
	case 4:
		sam.PORT.PINCFG0_4.Set(val)
	case 5:
		sam.PORT.PINCFG0_5.Set(val)
	case 6:
		sam.PORT.PINCFG0_6.Set(val)
	case 7:
		sam.PORT.PINCFG0_7.Set(val)
	case 8:
		sam.PORT.PINCFG0_8.Set(val)
	case 9:
		sam.PORT.PINCFG0_9.Set(val)
	case 10:
		sam.PORT.PINCFG0_10.Set(val)
	case 11:
		sam.PORT.PINCFG0_11.Set(val)
	case 12:
		sam.PORT.PINCFG0_12.Set(val)
	case 13:
		sam.PORT.PINCFG0_13.Set(val)
	case 14:
		sam.PORT.PINCFG0_14.Set(val)
	case 15:
		sam.PORT.PINCFG0_15.Set(val)
	case 16:
		sam.PORT.PINCFG0_16.Set(val)
	case 17:
		sam.PORT.PINCFG0_17.Set(val)
	case 18:
		sam.PORT.PINCFG0_18.Set(val)
	case 19:
		sam.PORT.PINCFG0_19.Set(val)
	case 20:
		sam.PORT.PINCFG0_20.Set(val)
	case 21:
		sam.PORT.PINCFG0_21.Set(val)
	case 22:
		sam.PORT.PINCFG0_22.Set(val)
	case 23:
		sam.PORT.PINCFG0_23.Set(val)
	case 24:
		sam.PORT.PINCFG0_24.Set(val)
	case 25:
		sam.PORT.PINCFG0_25.Set(val)
	case 26:
		sam.PORT.PINCFG0_26.Set(val)
	case 27:
		sam.PORT.PINCFG0_27.Set(val)
	case 28:
		sam.PORT.PINCFG0_28.Set(val)
	case 29:
		sam.PORT.PINCFG0_29.Set(val)
	case 30:
		sam.PORT.PINCFG0_30.Set(val)
	case 31:
		sam.PORT.PINCFG0_31.Set(val)
	case 32: // PB00
		sam.PORT.PINCFG1_0.ReplaceBits(uint32(val), 0xff, 0)
	case 33: // PB01
		sam.PORT.PINCFG1_0.ReplaceBits(uint32(val), 0xff, 8)
	case 34: // PB02
		sam.PORT.PINCFG1_0.ReplaceBits(uint32(val), 0xff, 16)
	case 35: // PB03
		sam.PORT.PINCFG1_0.ReplaceBits(uint32(val), 0xff, 24)
	case 36: // PB04
		sam.PORT.PINCFG1_4.ReplaceBits(uint32(val), 0xff, 0)
	case 37: // PB05
		sam.PORT.PINCFG1_4.ReplaceBits(uint32(val), 0xff, 8)
	case 38: // PB06
		sam.PORT.PINCFG1_4.ReplaceBits(uint32(val), 0xff, 16)
	case 39: // PB07
		sam.PORT.PINCFG1_4.ReplaceBits(uint32(val), 0xff, 24)
	case 40: // PB08
		sam.PORT.PINCFG1_8.ReplaceBits(uint32(val), 0xff, 0)
	case 41: // PB09
		sam.PORT.PINCFG1_8.ReplaceBits(uint32(val), 0xff, 8)
	case 42: // PB10
		sam.PORT.PINCFG1_8.ReplaceBits(uint32(val), 0xff, 16)
	case 43: // PB11
		sam.PORT.PINCFG1_8.ReplaceBits(uint32(val), 0xff, 24)
	case 44: // PB12
		sam.PORT.PINCFG1_12.ReplaceBits(uint32(val), 0xff, 0)
	case 45: // PB13
		sam.PORT.PINCFG1_12.ReplaceBits(uint32(val), 0xff, 8)
	case 46: // PB14
		sam.PORT.PINCFG1_12.ReplaceBits(uint32(val), 0xff, 16)
	case 47: // PB15
		sam.PORT.PINCFG1_12.ReplaceBits(uint32(val), 0xff, 24)
	case 48: // PB16
		sam.PORT.PINCFG1_16.ReplaceBits(uint32(val), 0xff, 0)
	case 49: // PB17
		sam.PORT.PINCFG1_16.ReplaceBits(uint32(val), 0xff, 8)
	case 50: // PB18
		sam.PORT.PINCFG1_16.ReplaceBits(uint32(val), 0xff, 16)
	case 51: // PB19
		sam.PORT.PINCFG1_16.ReplaceBits(uint32(val), 0xff, 24)
	case 52: // PB20
		sam.PORT.PINCFG1_20.ReplaceBits(uint32(val), 0xff, 0)
	case 53: // PB21
		sam.PORT.PINCFG1_20.ReplaceBits(uint32(val), 0xff, 8)
	case 54: // PB22
		sam.PORT.PINCFG1_20.ReplaceBits(uint32(val), 0xff, 16)
	case 55: // PB23
		sam.PORT.PINCFG1_20.ReplaceBits(uint32(val), 0xff, 24)
	case 56: // PB24
		sam.PORT.PINCFG1_24.ReplaceBits(uint32(val), 0xff, 0)
	case 57: // PB25
		sam.PORT.PINCFG1_24.ReplaceBits(uint32(val), 0xff, 8)
	case 58: // PB26
		sam.PORT.PINCFG1_24.ReplaceBits(uint32(val), 0xff, 16)
	case 59: // PB27
		sam.PORT.PINCFG1_24.ReplaceBits(uint32(val), 0xff, 24)
	case 60: // PB28
		sam.PORT.PINCFG1_28.ReplaceBits(uint32(val), 0xff, 0)
	case 61: // PB29
		sam.PORT.PINCFG1_28.ReplaceBits(uint32(val), 0xff, 8)
	case 62: // PB30
		sam.PORT.PINCFG1_28.ReplaceBits(uint32(val), 0xff, 16)
	case 63: // PB31
		sam.PORT.PINCFG1_28.ReplaceBits(uint32(val), 0xff, 24)
	}
}