mirror of
https://github.com/apache/nuttx.git
synced 2026-05-21 13:13:08 +08:00
drivers: add UART 16550 compatible PCI device support
add support for UART 16550 compatible PCI device. For now we support qemu serial PCI devices and AX99100 based cards. Signed-off-by: p-szafonimateusz <p-szafonimateusz@xiaomi.com>
This commit is contained in:
committed by
Xiang Xiao
parent
ceb2921d79
commit
8ab0785d71
@@ -63,4 +63,10 @@ if(CONFIG_UART_BTH4)
|
||||
list(APPEND SRCS uart_bth4.c)
|
||||
endif()
|
||||
|
||||
# UART PCI drivers
|
||||
|
||||
if(CONFIG_16550_PCI_UART)
|
||||
list(APPEND SRCS uart_pci_16550.c)
|
||||
endif()
|
||||
|
||||
target_sources(drivers PRIVATE ${SRCS})
|
||||
|
||||
@@ -79,6 +79,10 @@ if 16550_UART
|
||||
source "drivers/serial/Kconfig-16550"
|
||||
endif
|
||||
|
||||
if PCI
|
||||
source "drivers/serial/Kconfig-pci"
|
||||
endif
|
||||
|
||||
#
|
||||
# MCU serial peripheral driver?
|
||||
#
|
||||
|
||||
@@ -0,0 +1,327 @@
|
||||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||
#
|
||||
|
||||
config 16550_PCI_UART
|
||||
bool "16550 UART PCI support"
|
||||
default n
|
||||
select 16550_UART
|
||||
|
||||
if 16550_PCI_UART
|
||||
|
||||
config 16550_PCI_UART0
|
||||
bool "16550 UART0 PCI"
|
||||
default n
|
||||
---help---
|
||||
Support for PCI UART0, will be registered as /dev/ttyS0
|
||||
|
||||
config 16550_PCI_UART1
|
||||
bool "16550 UART1 PCI"
|
||||
default n
|
||||
---help---
|
||||
Support for PCI UART1, will be registered as /dev/ttyS1
|
||||
|
||||
config 16550_PCI_UART2
|
||||
bool "16550 UART2 PCI"
|
||||
default n
|
||||
---help---
|
||||
Support for PCI UART2, will be registered as /dev/ttyS2
|
||||
|
||||
config 16550_PCI_UART3
|
||||
bool "16550 UART3 PCI"
|
||||
default n
|
||||
---help---
|
||||
Support for PCI UART3, will be registered as /dev/ttyS3
|
||||
|
||||
config 16550_PCI_UART_QEMU
|
||||
bool "16550 PCI QEMU devices"
|
||||
default n
|
||||
---help---
|
||||
Enable support for QEMU serial devices (pci-serial, pci-serial-2x
|
||||
pci-serial-4x)
|
||||
|
||||
config 16550_PCI_UART_AX99100
|
||||
bool "16550 PCI AX99100 device"
|
||||
default n
|
||||
---help---
|
||||
Enable support for AX99100 serial port device.
|
||||
|
||||
endif # 16550_PCI_UART
|
||||
|
||||
if 16550_PCI_UART0
|
||||
|
||||
config 16550_PCI_UART0_VENDOR
|
||||
hex "16550 UART0 PCI vendor"
|
||||
---help---
|
||||
PCI vendor number that will be associated with UART0
|
||||
|
||||
config 16550_PCI_UART0_DEVICE
|
||||
hex "16550 UART0 PCI device"
|
||||
---help---
|
||||
PCI device number that will be associated with UART0
|
||||
|
||||
config 16550_PCI_UART0_PORT
|
||||
int "16550 UART0 PCI port"
|
||||
default 0
|
||||
---help---
|
||||
Port in multi-port device. Starts from 0.
|
||||
Must be set to 0 for single port devices .
|
||||
|
||||
config 16550_PCI_UART0_CLOCK
|
||||
int "16550 UART0 PCI clock"
|
||||
|
||||
config 16550_PCI_UART0_BAUD
|
||||
int "16550 UART0 PCI BAUD"
|
||||
default 115200
|
||||
|
||||
config 16550_PCI_UART0_PARITY
|
||||
int "16550 UART0 PCI parity"
|
||||
default 0
|
||||
range 0 2
|
||||
---help---
|
||||
16550 UART0 PCI parity. 0=None, 1=Odd, 2=Even. Default: None
|
||||
|
||||
config 16550_PCI_UART0_BITS
|
||||
int "16550 UART0 PCI number of bits"
|
||||
default 8
|
||||
---help---
|
||||
16550 UART0 PCI number of bits. Default: 8
|
||||
|
||||
config 16550_PCI_UART0_2STOP
|
||||
int "16550 UART0 PCI two stop bits"
|
||||
default 0
|
||||
---help---
|
||||
0=1 stop bit, 1=Two stop bits. Default: 1 stop bit
|
||||
|
||||
config 16550_PCI_UART0_RXBUFSIZE
|
||||
int "16550 UART0 PCI Rx buffer size"
|
||||
default 256
|
||||
---help---
|
||||
16550 UART0 PCI Rx buffer size. Default: 256
|
||||
|
||||
config 16550_PCI_UART0_TXBUFSIZE
|
||||
int "16550 UART0 PCI Tx buffer size"
|
||||
default 256
|
||||
---help---
|
||||
16550 UART0 PCI Tx buffer size. Default: 256
|
||||
|
||||
endif # 16550_PCI_UART0
|
||||
|
||||
if 16550_PCI_UART1
|
||||
|
||||
config 16550_PCI_UART1_VENDOR
|
||||
hex "16550 UART1 PCI vendor"
|
||||
default 16550_PCI_UART0_VENDOR
|
||||
---help---
|
||||
PCI vendor number that will be associated with UART1
|
||||
|
||||
config 16550_PCI_UART1_DEVICE
|
||||
hex "16550 UART1 PCI device"
|
||||
default 16550_PCI_UART0_DEVICE
|
||||
---help---
|
||||
PCI device number that will be associated with UART1
|
||||
|
||||
config 16550_PCI_UART1_PORT
|
||||
int "16550 UART1 PCI port"
|
||||
default 1
|
||||
---help---
|
||||
Port in multi-port device. Starts from 0.
|
||||
Must be set to 0 for single port devices .
|
||||
|
||||
config 16550_PCI_UART1_CLOCK
|
||||
int "16550 UART1 PCI clock"
|
||||
|
||||
config 16550_PCI_UART1_BAUD
|
||||
int "16550 UART1 PCI BAUD"
|
||||
default 115200
|
||||
|
||||
config 16550_PCI_UART1_PARITY
|
||||
int "16550 UART1 PCI parity"
|
||||
default 0
|
||||
range 0 2
|
||||
---help---
|
||||
16550 UART1 PCI parity. 0=None, 1=Odd, 2=Even. Default: None
|
||||
|
||||
config 16550_PCI_UART1_BITS
|
||||
int "16550 UART1 PCI number of bits"
|
||||
default 8
|
||||
---help---
|
||||
16550 UART1 PCI number of bits. Default: 8
|
||||
|
||||
config 16550_PCI_UART1_2STOP
|
||||
int "16550 UART1 PCI two stop bits"
|
||||
default 0
|
||||
---help---
|
||||
0=1 stop bit, 1=Two stop bits. Default: 1 stop bit
|
||||
|
||||
config 16550_PCI_UART1_RXBUFSIZE
|
||||
int "16550 UART1 PCI Rx buffer size"
|
||||
default 256
|
||||
---help---
|
||||
16550 UART1 PCI Rx buffer size. Default: 256
|
||||
|
||||
config 16550_PCI_UART1_TXBUFSIZE
|
||||
int "16550 UART1 PCI Tx buffer size"
|
||||
default 256
|
||||
---help---
|
||||
16550 UART1 PCI Tx buffer size. Default: 256
|
||||
|
||||
endif # 16550_PCI_UART1
|
||||
|
||||
if 16550_PCI_UART2
|
||||
|
||||
config 16550_PCI_UART2_VENDOR
|
||||
hex "16550 UART2 PCI vendor"
|
||||
default 16550_PCI_UART1_VENDOR
|
||||
---help---
|
||||
PCI vendor number that will be associated with UART2
|
||||
|
||||
config 16550_PCI_UART2_DEVICE
|
||||
hex "16550 UART2 PCI device"
|
||||
default 16550_PCI_UART1_DEVICE
|
||||
---help---
|
||||
PCI device number that will be associated with UART2
|
||||
|
||||
config 16550_PCI_UART2_PORT
|
||||
int "16550 UART2 PCI port"
|
||||
default 2
|
||||
---help---
|
||||
Port in multi-port device. Starts from 0.
|
||||
Must be set to 0 for single port devices .
|
||||
|
||||
config 16550_PCI_UART2_CLOCK
|
||||
int "16550 UART2 PCI clock"
|
||||
|
||||
config 16550_PCI_UART2_BAUD
|
||||
int "16550 UART2 PCI BAUD"
|
||||
default 115200
|
||||
|
||||
config 16550_PCI_UART2_PARITY
|
||||
int "16550 UART2 PCI parity"
|
||||
default 0
|
||||
range 0 2
|
||||
---help---
|
||||
16550 UART2 PCI parity. 0=None, 1=Odd, 2=Even. Default: None
|
||||
|
||||
config 16550_PCI_UART2_BITS
|
||||
int "16550 UART2 PCI number of bits"
|
||||
default 8
|
||||
---help---
|
||||
16550 UART2 PCI number of bits. Default: 8
|
||||
|
||||
config 16550_PCI_UART2_2STOP
|
||||
int "16550 UART2 PCI two stop bits"
|
||||
default 0
|
||||
---help---
|
||||
0=1 stop bit, 1=Two stop bits. Default: 1 stop bit
|
||||
|
||||
config 16550_PCI_UART2_RXBUFSIZE
|
||||
int "16550 UART2 PCI Rx buffer size"
|
||||
default 256
|
||||
---help---
|
||||
16550 UART2 PCI Rx buffer size. Default: 256
|
||||
|
||||
config 16550_PCI_UART2_TXBUFSIZE
|
||||
int "16550 UART2 PCI Tx buffer size"
|
||||
default 256
|
||||
---help---
|
||||
16550 UART2 PCI Tx buffer size. Default: 256
|
||||
|
||||
endif # 16550_PCI_UART2
|
||||
|
||||
if 16550_PCI_UART3
|
||||
|
||||
config 16550_PCI_UART3_VENDOR
|
||||
hex "16550 UART3 PCI vendor"
|
||||
default 16550_PCI_UART2_VENDOR
|
||||
---help---
|
||||
PCI vendor number that will be associated with UART3
|
||||
|
||||
config 16550_PCI_UART3_DEVICE
|
||||
hex "16550 UART3 PCI device"
|
||||
default 16550_PCI_UART2_DEVICE
|
||||
---help---
|
||||
PCI device number that will be associated with UART3
|
||||
|
||||
config 16550_PCI_UART3_PORT
|
||||
int "16550 UART3 PCI port"
|
||||
default 3
|
||||
---help---
|
||||
Port in multi-port device. Starts from 0.
|
||||
Must be set to 0 for single port devices .
|
||||
|
||||
config 16550_PCI_UART3_CLOCK
|
||||
int "16550 UART3 PCI clock"
|
||||
|
||||
config 16550_PCI_UART3_BAUD
|
||||
int "16550 UART3 PCI BAUD"
|
||||
default 115200
|
||||
|
||||
config 16550_PCI_UART3_PARITY
|
||||
int "16550 UART3 PCI parity"
|
||||
default 0
|
||||
range 0 2
|
||||
---help---
|
||||
16550 UART3 PCI parity. 0=None, 1=Odd, 2=Even. Default: None
|
||||
|
||||
config 16550_PCI_UART3_BITS
|
||||
int "16550 UART3 PCI number of bits"
|
||||
default 8
|
||||
---help---
|
||||
16550 UART3 PCI number of bits. Default: 8
|
||||
|
||||
config 16550_PCI_UART3_2STOP
|
||||
int "16550 UART3 PCI two stop bits"
|
||||
default 0
|
||||
---help---
|
||||
0=1 stop bit, 1=Two stop bits. Default: 1 stop bit
|
||||
|
||||
config 16550_PCI_UART3_RXBUFSIZE
|
||||
int "16550 UART3 PCI Rx buffer size"
|
||||
default 256
|
||||
---help---
|
||||
16550 UART3 PCI Rx buffer size. Default: 256
|
||||
|
||||
config 16550_PCI_UART3_TXBUFSIZE
|
||||
int "16550 UART3 PCI Tx buffer size"
|
||||
default 256
|
||||
---help---
|
||||
16550 UART3 PCI Tx buffer size. Default: 256
|
||||
|
||||
endif # 16550_PCI_UART3
|
||||
|
||||
config 16550_PCI_CONSOLE
|
||||
bool
|
||||
depends on 16550_PCI_UART && 16550_NO_SERIAL_CONSOLE
|
||||
select SERIAL_CONSOLE
|
||||
|
||||
choice
|
||||
prompt "16550 PCI Serial Console"
|
||||
default 16550_PCI_NO_SERIAL_CONSOLE
|
||||
depends on DEV_CONSOLE && 16550_PCI_UART
|
||||
|
||||
config 16550_PCI_UART0_SERIAL_CONSOLE
|
||||
bool "16550 PCI UART0 serial console"
|
||||
depends on 16550_PCI_UART0
|
||||
select 16550_PCI_CONSOLE
|
||||
|
||||
config 16550_PCI_UART1_SERIAL_CONSOLE
|
||||
bool "16550 PCI UART1 serial console"
|
||||
depends on 16550_PCI_UART1
|
||||
select 16550_PCI_CONSOLE
|
||||
|
||||
config 16550_PCI_UART2_SERIAL_CONSOLE
|
||||
bool "16550 PCI UART2 serial console"
|
||||
depends on 16550_PCI_UART2
|
||||
select 16550_PCI_CONSOLE
|
||||
|
||||
config 16550_PCI_UART3_SERIAL_CONSOLE
|
||||
bool "16550 PCI UART3 serial console"
|
||||
depends on 16550_PCI_UART3
|
||||
select 16550_PCI_CONSOLE
|
||||
|
||||
config 16550_PCI_NO_SERIAL_CONSOLE
|
||||
bool "No 16550 PCI serial console"
|
||||
|
||||
endchoice # 16550 Serial Console
|
||||
@@ -75,6 +75,12 @@ ifeq ($(CONFIG_RAM_UART),y)
|
||||
CSRCS += uart_ram.c
|
||||
endif
|
||||
|
||||
# UART PCI drivers
|
||||
|
||||
ifeq ($(CONFIG_16550_PCI_UART),y)
|
||||
CSRCS += uart_pci_16550.c
|
||||
endif
|
||||
|
||||
# Include serial build support
|
||||
|
||||
DEPPATH += --dep-path serial
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,51 @@
|
||||
/****************************************************************************
|
||||
* include/nuttx/serial/uart_pci_16550.h
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership. The
|
||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance with the
|
||||
* License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __INCLUDE_NUTTX_SERIAL_UART_PCI_16550_H
|
||||
#define __INCLUDE_NUTTX_SERIAL_UART_PCI_16550_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define EXTERN extern "C"
|
||||
extern "C"
|
||||
{
|
||||
#else
|
||||
#define EXTERN extern
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_16550_PCI_UART
|
||||
int pci_u16550_init(void);
|
||||
#endif
|
||||
|
||||
#undef EXTERN
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __INCLUDE_NUTTX_SERIAL_UART_PCI_16550_H */
|
||||
Reference in New Issue
Block a user