Subversion Repositories HelenOS

Rev

Rev 3969 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3969 Rev 3976
Line 30... Line 30...
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file    fhc.c
34
 * @file    fhc.c
35
 * @brief   FHC bus driver.
35
 * @brief   FHC bus controller driver.
36
 */
36
 */
37
 
37
 
38
#include <ipc/ipc.h>
38
#include <ipc/ipc.h>
39
#include <ipc/services.h>
39
#include <ipc/services.h>
40
#include <ipc/bus.h>
40
#include <ipc/bus.h>
Line 60... Line 60...
60
 
60
 
61
static void *fhc_uart_phys;
61
static void *fhc_uart_phys;
62
static volatile uint32_t *fhc_uart_virt;
62
static volatile uint32_t *fhc_uart_virt;
63
static size_t fhc_uart_size;
63
static size_t fhc_uart_size;
64
 
64
 
65
/** Handle one connection to ramdisk.
65
/** Handle one connection to fhc.
66
 *
66
 *
67
 * @param iid       Hash of the request that opened the connection.
67
 * @param iid       Hash of the request that opened the connection.
68
 * @param icall     Call data of the request that opened the connection.
68
 * @param icall     Call data of the request that opened the connection.
69
 */
69
 */
70
static void fhc_connection(ipc_callid_t iid, ipc_call_t *icall)
70
static void fhc_connection(ipc_callid_t iid, ipc_call_t *icall)