summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/arm_atsam/spi.c
blob: 6036a922041e532510603ae56b1e20b53f2bb3a5 (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
/*
Copyright 2018 Massdrop Inc.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "arm_atsam_protocol.h"

Srdata_t srdata;

void SPI_WriteSRData(void)
{
    uint16_t timeout;

    SC2_RCLCK_LO;

    timeout = 50000;
    while (!(SCSPI->SPI.INTFLAG.bit.DRE) && --timeout) { DBGC(DC_SPI_WRITE_DRE); }

    SCSPI->SPI.DATA.bit.DATA = srdata.reg & 0xFF; //Shift in bits 7-0
    timeout = 50000;
    while (!(SCSPI->SPI.INTFLAG.bit.TXC) && --timeout) { DBGC(DC_SPI_WRITE_TXC_1); }

    SCSPI->SPI.DATA.bit.DATA = (srdata.reg >> 8) & 0xFF; //Shift in bits 15-8
    timeout = 50000;
    while (!(SCSPI->SPI.INTFLAG.bit.TXC) && --timeout) { DBGC(DC_SPI_WRITE_TXC_2); }

    SC2_RCLCK_HI;
}

void SPI_Init(void)
{
    uint32_t timeout;

    DBGC(DC_SPI_INIT_BEGIN);

    CLK_set_spi_freq(CHAN_SERCOM_SPI, FREQ_SPI_DEFAULT);

    PORT->Group[0].PMUX[6].bit.PMUXE = 2;
    PORT->Group[0].PMUX[6].bit.PMUXO = 2;
    PORT->Group[0].PINCFG[12].bit.PMUXEN = 1;
    PORT->Group[0].PINCFG[13].bit.PMUXEN = 1;

    //Configure Shift Registers
    SC2_DIRSET;
    SC2_RCLCK_HI;
    SC2_OE_DIS;

    SCSPI->SPI.CTRLA.bit.DORD = 1;
    SCSPI->SPI.CTRLA.bit.CPOL = 1;
    SCSPI->SPI.CTRLA.bit.CPHA = 1;
    SCSPI->SPI.CTRLA.bit.DIPO = 3;
    SCSPI->SPI.CTRLA.bit.MODE = 3; //master

    SCSPI->SPI.CTRLA.bit.ENABLE = 1;
    timeout = 50000;
    while (SCSPI->SPI.SYNCBUSY.bit.ENABLE && timeout--) { DBGC(DC_SPI_SYNC_ENABLING); }

    srdata.reg = 0;
    srdata.bit.HUB_CONNECT = 0;
    srdata.bit.HUB_RESET_N = 0;
    srdata.bit.S_UP = 0;
    srdata.bit.E_UP_N = 1;
    srdata.bit.S_DN1 = 1;
    srdata.bit.E_DN1_N = 1;
    srdata.bit.E_VBUS_1 = 0;
    srdata.bit.E_VBUS_2 = 0;
    srdata.bit.SRC_1 = 1;
    srdata.bit.SRC_2 = 1;
    srdata.bit.IRST = 1;
    srdata.bit.SDB_N = 0;
    SPI_WriteSRData();

    //Enable register output
    SC2_OE_ENA;

    DBGC(DC_SPI_INIT_COMPLETE);
}