summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/c5471/Kconfig
blob: f553417e269f4a03af9302a3ad095c04cc143d3c (plain) (blame)
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
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

comment "C5471 Configuration Options"

menu "IrDA UART Configuration"

config UART_IRDA_BAUD
	int "IrDA UART BAUD"
	default 115200

config UART_IRDA_PARITY
	int "IrDA UART parity"
	default 0
	---help---
		IrDA UART parity.  0=None, 1=Odd, 2=Even.  Default: None

config UART_IRDA_BITS
	int "IrDA UART number of bits"
	default 8
	---help---
		IrDA UART number of bits.  Default: 8

config UART_IRDA_2STOP
	int "IrDA UART two stop bits"
	default 0
	---help---
		0=1 stop bit, 1=Two stop bits.  Default: 1 stop bit

config UART_IRDA_RXBUFSIZE
	int "IrDA UART Rx buffer size"
	default 256
	---help---
		IrDA UART Rx buffer size.  Default: 256

config UART_IRDA_TXBUFSIZE
	int "IrDA UART Tx buffer size"
	default 256
	---help---
		IrDA UART Tx buffer size.  Default: 256

endmenu # IrDA UART Configuration

menu "Modem UART Configuration"

config UART_MODEM_BAUD
	int "IrDA UART BAUD"
	default 115200

config UART_MODEM_PARITY
	int "IrDA UART parity"
	default 0
	---help---
		IrDA UART parity.  0=None, 1=Odd, 2=Even.  Default: None

config UART_MODEM_BITS
	int "IrDA UART number of bits"
	default 8
	---help---
		IrDA UART number of bits.  Default: 8

config UART_MODEM_2STOP
	int "IrDA UART two stop bits"
	default 0
	---help---
		0=1 stop bit, 1=Two stop bits.  Default: 1 stop bit

config UART_MODEM_RXBUFSIZE
	int "IrDA UART Rx buffer size"
	default 256
	---help---
		IrDA UART Rx buffer size.  Default: 256

config UART_MODEM_TXBUFSIZE
	int "IrDA UART Tx buffer size"
	default 256
	---help---
		IrDA UART Tx buffer size.  Default: 256

endmenu # Modem UART Configuration

choice
	prompt "Ethernet PHY"
	default C5471_PHY_LU3X31T_T64

config C5471_PHY_NONE
	bool "None"

config C5471_PHY_AC101L
	bool "AC101L"

config C5471_PHY_LU3X31T_T64
	bool "LU3X31T T64"

endchoice

choice
	prompt "PHY mode"
	default C5471_AUTONEGOTIATION

config C5471_AUTONEGOTIATION
	bool "Autonegotiation"

config C5471_BASET100
	bool "100BaseT FullDuplex"

config C5471_BASET10
	bool "10BaseT FullDuplex"

endchoice