Uart Driver
发表于
static const fle_operations tty_fops = {
.read = tty_read,
.write = tty_write,
.open = tty_open,
};/* 用户空间 */
static const struct tty_operations uart_ops = {
.open = uart_open,
.close = uart_close,
.write = uart_write,
};/* line discipline */
struct tty_ldisc_ops tty_ldisc_N_TTY = {
.open = n_tty_open,
.read = n_tty_read,
.write = n_tty_write,
.receie_buf = n_tty_receive_buf,
}; /* serial_driver */
static struct uart_ops s3c24xx_serial_ops = {
.start_tx = s3c24xx_serial_start_tx,
.startup = s3c24xx_serial_startup,
};/*harware*/
Ipmitool
发表于
ipmitool命令流程
Docker
发表于
ututorial
Gerrit+jenkins
发表于
未命名
发表于
uboot启动学习
发表于
|
分类于
linux-uboot
前沿
ARM64内存管理:mmap
发表于
|
分类于
linux-memory
前沿
linux锁实现之条件锁、读写锁
发表于
|
分类于
pthread
前沿
linux调试及检测工具
发表于
|
分类于
linux