Blame view

RIOT/boards/ek-lm4f120xl/include/periph_conf.h 4.2 KB
a752c7ab   elopes   add first test an...
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
  /*
   * Copyright (C) 2015 Rakendra Thapa <rakendrathapa@gmail.com>
   *
   * This file is subject to the terms and conditions of the GNU Lesser General
   * Public License v2.1. See the file LICENSE in the top level directory for more
   * details.
   */
  
  /**
   * @ingroup     boards_ek-lm4f120xl
   * @{
   *
   * @file
   * @name        Peripheral MCU configuration for the ek-lm4f120xl board
   *
   * @author      Rakendra Thapa <rakendrathapa@gmail.com>
   */
  
  #ifndef PERIPH_CONF_H
  #define PERIPH_CONF_H
  
  #include "periph_cpu.h"
  
  #ifdef __cplusplus
  extern "C" {
  #endif
  
  /**
   * @name Define the nominal CPU core clock in this board
   * @{
   */
  #define CLK80                           1
  #define CLK50                           2
  #define CLK40                           3
  #define CLK16                           4
  #define CLK1                            5
  #define CLOCK_SOURCE                    CLK40
  /** @} */
  
  /**
   * @name Timer configuration
   * @{
   */
  #define TIMER_NUMOF         (2U)
  #define TIMER_0_EN          1
  #define TIMER_1_EN          1
  #define TIMER_IRQ_PRIO      1
  
  /* Timer 0 configuration
   *
   * WTIMER0 is a 32/64bits timer.
   * We use timer_a as TIMER_0
   */
  #define TIMER_0_CHANNELS    1
  #define TIMER_0_MAX_VALUE   (0xffffffff)
  #define TIMER_0_ISR         isr_wtimer0a
  #define TIMER_0_IRQ_CHAN    Timer0A_IRQn
  
  /* Timer 1 configuration
   *
   * WTIMER1 is a 32/64bits timer.
   * We use timer_a as TIMER_1
   */
  
  #define TIMER_1_CHANNELS    1
  #define TIMER_1_MAX_VALUE   (0xffffffff)
  #define TIMER_1_ISR         isr_wtimer1a
  #define TIMER_1_IRQ_CHAN    Timer1A_IRQn
  /** @} */
  
  /**
   * @name UART configuration
   * @{
   */
  #define UART_NUMOF          (1U)
  #define UART_0_EN           1
  #define UART_1_EN           0
  #define UART_IRQ_PRIO       1
  #define UART_CLK            ROM_SysCtlClockGet()  /* UART clock runs with 40MHz */
  /* UART 0 device configuration */
  #define UART_0_DEV          UART0_BASE
  #define UART_0_CLK          (40000000)
  #define UART_0_IRQ_CHAN     UART0_IRQn
  #define UART_0_ISR          isr_uart0
  /* UART 0 pin configuration */
  #define UART_0_PORT         GPIOA
  #define UART_0_TX_PIN       UART_PA1_U0TX
  #define UART_0_RX_PIN       UART_PA0_U0RX
  
  /* UART 1 device configuration */
  #define UART_1_DEV          UART1_BASE
  #define UART_1_CLK          (40000000)
  #define UART_1_IRQ_CHAN     UART1_IRQn
  #define UART_1_ISR          isr_uart1
  /** @} */
  
  /**
   * @name   ADC configuration
   * @{
   */
  #define ADC_NUMOF           (12)
  /** @} */
  
  /**
   * @name SPI configuration
   * @{
   */
  static const spi_conf_t spi_confs[] = {
      {
          .ssi_sysctl = SYSCTL_PERIPH_SSI0,
          .ssi_base = SSI0_BASE,
          .gpio_sysctl = SYSCTL_PERIPH_GPIOA,
          .gpio_port = GPIO_PORTA_BASE,
          .pins = {
              .clk = GPIO_PA2_SSI0CLK,
              .fss = GPIO_PA3_SSI0FSS,
              .rx = GPIO_PA4_SSI0RX,
              .tx = GPIO_PA5_SSI0TX,
              .mask = GPIO_PIN_2 | GPIO_PIN_3 | GPIO_PIN_4 | GPIO_PIN_5
          }
      },
      {
          .ssi_sysctl = SYSCTL_PERIPH_SSI1,
          .ssi_base = SSI1_BASE,
          .gpio_sysctl = SYSCTL_PERIPH_GPIOF,
          .gpio_port = GPIO_PORTF_BASE,
          .pins = {
              .clk = GPIO_PF2_SSI1CLK,
              .fss = GPIO_PF3_SSI1FSS,
              .rx = GPIO_PF0_SSI1RX,
              .tx = GPIO_PF1_SSI1TX,
              .mask = GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_3
          }
      },
      {
          .ssi_sysctl = SYSCTL_PERIPH_SSI2,
          .ssi_base = SSI2_BASE,
          .gpio_sysctl = SYSCTL_PERIPH_GPIOB,
          .gpio_port = GPIO_PORTB_BASE,
          .pins = {
              .clk = GPIO_PB4_SSI2CLK,
              .fss = GPIO_PB5_SSI2FSS,
              .rx = GPIO_PB6_SSI2RX,
              .tx = GPIO_PB7_SSI2TX,
              .mask = GPIO_PIN_4 | GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7
          }
      },
      {
          .ssi_sysctl = SYSCTL_PERIPH_SSI3,
          .ssi_base = SSI3_BASE,
          .gpio_sysctl = SYSCTL_PERIPH_GPIOD,
          .gpio_port = GPIO_PORTD_BASE,
          .pins = {
              .clk = GPIO_PD0_SSI3CLK,
              .fss = GPIO_PD1_SSI3FSS,
              .rx = GPIO_PD2_SSI3RX,
              .tx = GPIO_PD3_SSI3TX,
              .mask = GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_3
          }
      },
  };
  
  #define SPI_NUMOF (sizeof(spi_confs) / sizeof(spi_confs[0]))
  /** @} */
  
  #ifdef __cplusplus
  }
  #endif
  
  #endif /* PERIPH_CONF_H */
  /** @} */