Changeset 534 for trunk/kernel
- Timestamp:
- Sep 21, 2018, 10:20:35 PM (6 years ago)
- Location:
- trunk/kernel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/Makefile
r473 r534 12 12 13 13 DRIVERS_OBJS = $(HAL_ARCH)/build/drivers/soclib_tty.o \ 14 $(HAL_ARCH)/build/drivers/soclib_mtty.o \ 14 15 $(HAL_ARCH)/build/drivers/soclib_bdv.o \ 15 16 $(HAL_ARCH)/build/drivers/soclib_hba.o \ -
trunk/kernel/devices/dev_pic.h
r503 r534 141 141 uint32_t dma[CONFIG_MAX_DMA_CHANNELS]; 142 142 uint32_t mmc; // MMC is single channel 143 uint32_t mtty; // Multi Tty (backup tty in cluster 0) 143 144 } 144 145 lapic_input_t; -
trunk/kernel/devices/dev_txt.h
r527 r534 71 71 IMPL_TXT_TTY = 0, 72 72 IMPL_TXT_RS2 = 1, 73 IMPL_TXT_MTY = 2, 73 74 } 74 75 txt_impl_t; -
trunk/kernel/kern/kernel_init.c
r532 r534 695 695 if ( func == DEV_FUNC_MMC ) lapic_input.mmc = id; 696 696 else if( func == DEV_FUNC_DMA ) lapic_input.dma[channel] = id; 697 else if( func == DEV_FUNC_TXT ) lapic_input.mtty = id; 697 698 else assert( false , "illegal source device for LAPIC input" ); 698 699 }
Note: See TracChangeset
for help on using the changeset viewer.