/* * soclib_tty.c - soclib tty driver implementation. * * Author Alain Greiner (2016) * * Copyright (c) UPMC Sorbonne Universites * * This file is part of ALMOS-MKH.. * * ALMOS-MKH. is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2.0 of the License. * * ALMOS-MKH. is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ALMOS-MKH.; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include #include #include #include #include // XXX void soclib_tty_init( chdev_t * chdev ) { // nothing to do } // Pour le write: tout en sync, ça part direct sur le VGA/série // Pour le read: là on attend l'ISR void __attribute__ ((noinline)) soclib_tty_cmd( xptr_t th_xp ) { // get client thread cluster and local pointer cxy_t th_cxy = GET_CXY( th_xp ); thread_t * th_ptr = (thread_t *)GET_PTR( th_xp ); // get command type and extended pointer on TXT device uint32_t type = hal_remote_lw ( XPTR( th_cxy , &th_ptr->command.txt.type ) ); xptr_t dev_xp = (xptr_t)hal_remote_lwd( XPTR( th_cxy , &th_ptr->command.txt.dev_xp ) ); // get TXT device cluster and local pointer cxy_t dev_cxy = GET_CXY( dev_xp ); chdev_t * dev_ptr = (chdev_t *)GET_PTR( dev_xp ); // get extended pointer on SOCLIB_TTY base segment xptr_t tty_xp = (xptr_t)hal_remote_lwd( XPTR( dev_cxy , &dev_ptr->base ) ); // get SOCLIB_TTY base segment cluster and local pointer cxy_t tty_cxy = GET_CXY( tty_xp ); uint32_t * tty_ptr = (uint32_t *)GET_PTR( tty_xp ); // get TTY channel index uint32_t channel = hal_remote_lw( XPTR( dev_cxy , &dev_ptr->channel ) ); // for now, only channel zero if (channel != 0) { x86_panic("should have been channel zero"); } if (type == TXT_READ) // descheduling strategy for calling thread { x86_panic("TXT_READ not handled"); } else if (type == TXT_WRITE || type == TXT_SYNC_WRITE) // busy waiting strategy for calling thread { uint32_t i; // get source buffer extended pointer & bytes count uint32_t count = hal_remote_lw ( XPTR( th_cxy , &th_ptr->command.txt.count ) ); xptr_t buf_xp = hal_remote_lwd( XPTR( th_cxy , &th_ptr->command.txt.buf_xp ) ); // loop on characters for (i = 0; i < count; i++) { // get one byte from command buffer in client cluster char byte = (char)hal_remote_lb( buf_xp + i ); // VGA output (for now) x86_putc(byte); } } } void __attribute__ ((noinline)) soclib_tty_isr( chdev_t * chdev ) { // Cette ISR est juste utile pour le clavier; on arrive ici quand une touche // est pressée x86_panic("soclib_tty_isr not handled"); }