513 lines
14 KiB
C
513 lines
14 KiB
C
/**
|
|
* \file executer/kernel/ikc.c
|
|
* License details are found in the file LICENSE.
|
|
* \brief
|
|
* inter kernel communication
|
|
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
|
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
|
* \author Balazs Gerofi <bgerofi@riken.jp> \par
|
|
* Copyright (C) 2012 RIKEN AICS
|
|
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
|
* Copyright (C) 2012 - 2013 Hitachi, Ltd.
|
|
* \author Tomoki Shirasawa <tomoki.shirasawa.kk@hitachi-solutions.com> \par
|
|
* Copyright (C) 2012 - 2013 Hitachi, Ltd.
|
|
* \author Balazs Gerofi <bgerofi@is.s.u-tokyo.ac.jp> \par
|
|
* Copyright (C) 2013 The University of Tokyo
|
|
*/
|
|
/*
|
|
* HISTORY:
|
|
* 2013/09/02 shirasawa add terminate thread
|
|
* 2013/08/07 nakamura add page fault forwarding
|
|
* 2013/06/06 shirasawa propagate error code for prepare image
|
|
* 2013/06/02 shirasawa add error handling for prepare_process
|
|
*/
|
|
#include <linux/sched.h>
|
|
#include <linux/module.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/miscdevice.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/string.h>
|
|
#include <linux/proc_fs.h>
|
|
#include <linux/list.h>
|
|
#include "mcctrl.h"
|
|
#ifdef ATTACHED_MIC
|
|
#include <sysdeps/mic/mic/micconst.h>
|
|
#endif
|
|
|
|
#define REQUEST_SHIFT 16
|
|
|
|
//int num_channels;
|
|
|
|
//struct mcctrl_channel *channels;
|
|
|
|
void mcexec_prepare_ack(ihk_os_t os, unsigned long arg, int err);
|
|
static void mcctrl_ikc_init(ihk_os_t os, int cpu, unsigned long rphys, struct ihk_ikc_channel_desc *c);
|
|
int mcexec_syscall(struct mcctrl_channel *c, int pid, unsigned long arg);
|
|
|
|
static DECLARE_WAIT_QUEUE_HEAD(procfsq);
|
|
static unsigned long procfsq_channel;
|
|
|
|
int mckernel_procfs_read(char *buffer, char **start, off_t offset,
|
|
int count, int *peof, void *dat);
|
|
|
|
/* A private data for the procfs driver. */
|
|
struct procfs_data {
|
|
ihk_os_t os;
|
|
int osnum;
|
|
int pid;
|
|
int cpu;
|
|
char fname[PROCFS_NAME_MAX];
|
|
};
|
|
|
|
struct procfs_list_entry {
|
|
struct list_head list;
|
|
struct procfs_data *data;
|
|
};
|
|
|
|
LIST_HEAD(procfs_file_list);
|
|
|
|
static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
|
void *__packet, void *__os)
|
|
{
|
|
struct ikc_scd_packet *pisp = __packet;
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(__os);
|
|
|
|
switch (pisp->msg) {
|
|
case SCD_MSG_INIT_CHANNEL:
|
|
mcctrl_ikc_init(__os, pisp->ref, pisp->arg, c);
|
|
break;
|
|
|
|
case SCD_MSG_PREPARE_PROCESS_ACKED:
|
|
mcexec_prepare_ack(__os, pisp->arg, 0);
|
|
break;
|
|
|
|
case SCD_MSG_PREPARE_PROCESS_NACKED:
|
|
mcexec_prepare_ack(__os, pisp->arg, pisp->err);
|
|
break;
|
|
|
|
case SCD_MSG_SYSCALL_ONESIDE:
|
|
mcexec_syscall(usrdata->channels + pisp->ref, pisp->pid, pisp->arg);
|
|
break;
|
|
case SCD_MSG_PROCFS_CREATE:
|
|
{
|
|
struct procfs_data *d;
|
|
unsigned long parg;
|
|
struct procfs_file *f;
|
|
struct proc_dir_entry *entry;
|
|
struct procfs_list_entry *e;
|
|
int mode;
|
|
ihk_device_t dev = ihk_os_to_dev(__os);
|
|
|
|
d = kmalloc(sizeof(struct procfs_data), GFP_KERNEL);
|
|
if (d == NULL) {
|
|
kprintf("ERROR: not enough memory to create PROCFS entry.\n");
|
|
}
|
|
d->osnum = pisp->osnum;
|
|
d->os = __os;
|
|
d->cpu = pisp->ref;
|
|
d->pid = pisp->pid;
|
|
|
|
parg = ihk_device_map_memory(dev, pisp->arg, sizeof(struct procfs_file));
|
|
f = ihk_device_map_virtual(dev, parg, sizeof(struct procfs_file), NULL, 0);
|
|
strncpy(d->fname, f->fname, PROCFS_NAME_MAX);
|
|
mode = f->mode;
|
|
f->status = 1; /* done */
|
|
ihk_device_unmap_virtual(dev, f, sizeof(struct procfs_file));
|
|
ihk_device_unmap_memory(dev, parg, sizeof(struct procfs_file));
|
|
|
|
entry = create_proc_entry(d->fname, mode, NULL);
|
|
if (entry == NULL) {
|
|
kprintf("ERROR: cannot create a PROCFS entry.\n");
|
|
kfree(d);
|
|
goto quit;
|
|
}
|
|
entry->data = d;
|
|
entry->read_proc = mckernel_procfs_read;
|
|
|
|
e = kmalloc(sizeof(struct procfs_list_entry), GFP_KERNEL);
|
|
if (e == NULL) {
|
|
kprintf("ERROR: not enough memory to create PROCFS entry.\n");
|
|
kfree(d);
|
|
goto quit;
|
|
}
|
|
e->data = d;
|
|
list_add(&(e->list), &procfs_file_list);
|
|
}
|
|
quit:
|
|
break;
|
|
case SCD_MSG_PROCFS_DELETE:
|
|
{
|
|
ihk_device_t dev = ihk_os_to_dev(__os);
|
|
unsigned long parg;
|
|
struct procfs_file *f;
|
|
struct procfs_list_entry *e;
|
|
|
|
parg = ihk_device_map_memory(dev, pisp->arg, sizeof(struct procfs_file));
|
|
f = ihk_device_map_virtual(dev, parg, sizeof(struct procfs_file), NULL, 0);
|
|
list_for_each_entry(e, &procfs_file_list, list) {
|
|
if (strncmp(e->data->fname, f->fname, PROCFS_NAME_MAX) == 0) {
|
|
list_del(&e->list);
|
|
kfree(e->data);
|
|
kfree(e);
|
|
break;
|
|
}
|
|
}
|
|
remove_proc_entry(f->fname, NULL);
|
|
ihk_device_unmap_virtual(dev, f, sizeof(struct procfs_file));
|
|
ihk_device_unmap_memory(dev, parg, sizeof(struct procfs_file));
|
|
|
|
}
|
|
break;
|
|
case SCD_MSG_PROCFS_ANSWER:
|
|
procfsq_channel = pisp->arg;
|
|
wake_up(&procfsq);
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int mcctrl_ikc_send(ihk_os_t os, int cpu, struct ikc_scd_packet *pisp)
|
|
{
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
|
|
if (cpu < 0 || cpu >= usrdata->num_channels || !usrdata->channels[cpu].c) {
|
|
return -EINVAL;
|
|
}
|
|
return ihk_ikc_send(usrdata->channels[cpu].c, pisp, 0);
|
|
}
|
|
|
|
int mcctrl_ikc_send_msg(ihk_os_t os, int cpu, int msg, int ref, unsigned long arg)
|
|
{
|
|
struct ikc_scd_packet packet;
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
|
|
if (cpu < 0 || cpu >= usrdata->num_channels || !usrdata->channels[cpu].c) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
packet.msg = msg;
|
|
packet.ref = ref;
|
|
packet.arg = arg;
|
|
|
|
return ihk_ikc_send(usrdata->channels[cpu].c, &packet, 0);
|
|
}
|
|
|
|
int mcctrl_ikc_set_recv_cpu(ihk_os_t os, int cpu)
|
|
{
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
|
|
ihk_ikc_channel_set_cpu(usrdata->channels[cpu].c,
|
|
ihk_ikc_get_processor_id());
|
|
kprintf("Setting the target to %d\n",
|
|
ihk_ikc_get_processor_id());
|
|
return 0;
|
|
}
|
|
|
|
int mcctrl_ikc_is_valid_thread(ihk_os_t os, int cpu)
|
|
{
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
|
|
if (cpu < 0 || cpu >= usrdata->num_channels || !usrdata->channels[cpu].c) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
//unsigned long *mcctrl_doorbell_va;
|
|
//unsigned long mcctrl_doorbell_pa;
|
|
|
|
static void mcctrl_ikc_init(ihk_os_t os, int cpu, unsigned long rphys, struct ihk_ikc_channel_desc *c)
|
|
{
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
struct ikc_scd_packet packet;
|
|
struct mcctrl_channel *pmc = usrdata->channels + cpu;
|
|
unsigned long phys;
|
|
struct ikc_scd_init_param *rpm;
|
|
|
|
if(c->port == 502)
|
|
pmc = usrdata->channels + usrdata->num_channels - 1;
|
|
|
|
if (!pmc) {
|
|
return;
|
|
}
|
|
|
|
printk("IKC init: cpu=%d port=%d\n", cpu, c->port);
|
|
|
|
phys = ihk_device_map_memory(ihk_os_to_dev(os), rphys,
|
|
sizeof(struct ikc_scd_init_param));
|
|
#ifdef CONFIG_MIC
|
|
rpm = ioremap_wc(phys, sizeof(struct ikc_scd_init_param));
|
|
#else
|
|
rpm = ihk_device_map_virtual(ihk_os_to_dev(os), phys,
|
|
sizeof(struct ikc_scd_init_param),
|
|
NULL, 0);
|
|
#endif
|
|
|
|
pmc->param.request_va =
|
|
(void *)__get_free_pages(GFP_KERNEL,
|
|
REQUEST_SHIFT - PAGE_SHIFT);
|
|
pmc->param.request_pa = virt_to_phys(pmc->param.request_va);
|
|
pmc->param.doorbell_va = usrdata->mcctrl_doorbell_va;
|
|
pmc->param.doorbell_pa = usrdata->mcctrl_doorbell_pa;
|
|
pmc->param.post_va = (void *)__get_free_page(GFP_KERNEL);
|
|
pmc->param.post_pa = virt_to_phys(pmc->param.post_va);
|
|
memset(pmc->param.doorbell_va, 0, PAGE_SIZE);
|
|
memset(pmc->param.request_va, 0, PAGE_SIZE);
|
|
memset(pmc->param.post_va, 0, PAGE_SIZE);
|
|
|
|
pmc->param.response_rpa = rpm->response_page;
|
|
pmc->param.response_pa
|
|
= ihk_device_map_memory(ihk_os_to_dev(os),
|
|
pmc->param.response_rpa,
|
|
PAGE_SIZE);
|
|
#ifdef CONFIG_MIC
|
|
pmc->param.response_va = ioremap_cache(pmc->param.response_pa,
|
|
PAGE_SIZE);
|
|
#else
|
|
pmc->param.response_va = ihk_device_map_virtual(ihk_os_to_dev(os),
|
|
pmc->param.response_pa,
|
|
PAGE_SIZE, NULL, 0);
|
|
#endif
|
|
|
|
pmc->dma_buf = (void *)__get_free_pages(GFP_KERNEL,
|
|
DMA_PIN_SHIFT - PAGE_SHIFT);
|
|
|
|
rpm->request_page = pmc->param.request_pa;
|
|
rpm->doorbell_page = pmc->param.doorbell_pa;
|
|
rpm->post_page = pmc->param.post_pa;
|
|
|
|
packet.msg = SCD_MSG_INIT_CHANNEL_ACKED;
|
|
packet.ref = cpu;
|
|
packet.arg = rphys;
|
|
|
|
printk("Request: %lx, Response: %lx, Doorbell: %lx\n",
|
|
pmc->param.request_pa, pmc->param.response_rpa,
|
|
pmc->param.doorbell_pa);
|
|
printk("Request: %p, Response: %p, Doorbell: %p\n",
|
|
pmc->param.request_va, pmc->param.response_va,
|
|
pmc->param.doorbell_va);
|
|
|
|
ihk_ikc_send(pmc->c, &packet, 0);
|
|
|
|
#ifdef CONFIG_MIC
|
|
iounmap(rpm);
|
|
#else
|
|
ihk_device_unmap_virtual(ihk_os_to_dev(os), rpm,
|
|
sizeof(struct ikc_scd_init_param));
|
|
#endif
|
|
|
|
ihk_device_unmap_memory(ihk_os_to_dev(os), phys,
|
|
sizeof(struct ikc_scd_init_param));
|
|
}
|
|
|
|
static int connect_handler(struct ihk_ikc_channel_info *param)
|
|
{
|
|
struct ihk_ikc_channel_desc *c;
|
|
int cpu;
|
|
ihk_os_t os = param->channel->remote_os;
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
|
|
c = param->channel;
|
|
cpu = c->send.queue->read_cpu;
|
|
|
|
if (cpu < 0 || cpu >= usrdata->num_channels) {
|
|
kprintf("Invalid connect source processor: %d\n", cpu);
|
|
return 1;
|
|
}
|
|
param->packet_handler = syscall_packet_handler;
|
|
|
|
INIT_LIST_HEAD(&usrdata->channels[cpu].wq_list);
|
|
spin_lock_init(&usrdata->channels[cpu].wq_list_lock);
|
|
|
|
usrdata->channels[cpu].c = c;
|
|
kprintf("syscall: MC CPU %d connected. c=%p\n", cpu, c);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int connect_handler2(struct ihk_ikc_channel_info *param)
|
|
{
|
|
struct ihk_ikc_channel_desc *c;
|
|
int cpu;
|
|
ihk_os_t os = param->channel->remote_os;
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
|
|
c = param->channel;
|
|
cpu = usrdata->num_channels - 1;
|
|
|
|
param->packet_handler = syscall_packet_handler;
|
|
|
|
INIT_LIST_HEAD(&usrdata->channels[cpu].wq_list);
|
|
spin_lock_init(&usrdata->channels[cpu].wq_list_lock);
|
|
|
|
usrdata->channels[cpu].c = c;
|
|
kprintf("syscall: MC CPU %d connected. c=%p\n", cpu, c);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct ihk_ikc_listen_param listen_param = {
|
|
.port = 501,
|
|
.handler = connect_handler,
|
|
.pkt_size = sizeof(struct ikc_scd_packet),
|
|
.queue_size = PAGE_SIZE,
|
|
.magic = 0x1129,
|
|
};
|
|
|
|
static struct ihk_ikc_listen_param listen_param2 = {
|
|
.port = 502,
|
|
.handler = connect_handler2,
|
|
.pkt_size = sizeof(struct ikc_scd_packet),
|
|
.queue_size = PAGE_SIZE,
|
|
.magic = 0x1329,
|
|
};
|
|
|
|
int prepare_ikc_channels(ihk_os_t os)
|
|
{
|
|
struct ihk_cpu_info *info;
|
|
struct mcctrl_usrdata *usrdata;
|
|
int error;
|
|
|
|
usrdata = kzalloc(sizeof(struct mcctrl_usrdata), GFP_KERNEL);
|
|
usrdata->mcctrl_doorbell_va = (void *)__get_free_page(GFP_KERNEL);
|
|
usrdata->mcctrl_doorbell_pa = virt_to_phys(usrdata->mcctrl_doorbell_va);
|
|
|
|
info = ihk_os_get_cpu_info(os);
|
|
if (!info) {
|
|
printk("Error: cannot retrieve CPU info.\n");
|
|
return -EINVAL;
|
|
}
|
|
if (info->n_cpus < 1) {
|
|
printk("Error: # of cpu is invalid.\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
usrdata->num_channels = info->n_cpus + 1;
|
|
usrdata->channels = kzalloc(sizeof(struct mcctrl_channel) * usrdata->num_channels,
|
|
GFP_KERNEL);
|
|
if (!usrdata->channels) {
|
|
printk("Error: cannot allocate channels.\n");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
usrdata->os = os;
|
|
init_waitqueue_head(&usrdata->wq_prepare);
|
|
ihk_host_os_set_usrdata(os, usrdata);
|
|
memcpy(&usrdata->listen_param, &listen_param, sizeof listen_param);
|
|
ihk_ikc_listen_port(os, &usrdata->listen_param);
|
|
memcpy(&usrdata->listen_param2, &listen_param2, sizeof listen_param2);
|
|
ihk_ikc_listen_port(os, &usrdata->listen_param2);
|
|
|
|
INIT_LIST_HEAD(&usrdata->per_proc_list);
|
|
spin_lock_init(&usrdata->per_proc_list_lock);
|
|
|
|
error = init_peer_channel_registry(usrdata);
|
|
if (error) {
|
|
return error;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void __destroy_ikc_channel(ihk_os_t os, struct mcctrl_channel *pmc)
|
|
{
|
|
free_pages((unsigned long)pmc->param.request_va,
|
|
REQUEST_SHIFT - PAGE_SHIFT);
|
|
free_page((unsigned long)pmc->param.post_va);
|
|
|
|
#ifdef CONFIG_MIC
|
|
iounmap(pmc->param.response_va);
|
|
#else
|
|
ihk_device_unmap_virtual(ihk_os_to_dev(os), pmc->param.response_va,
|
|
PAGE_SIZE);
|
|
#endif
|
|
ihk_device_unmap_memory(ihk_os_to_dev(os),
|
|
pmc->param.response_pa, PAGE_SIZE);
|
|
free_pages((unsigned long)pmc->dma_buf,
|
|
DMA_PIN_SHIFT - PAGE_SHIFT);
|
|
}
|
|
|
|
void destroy_ikc_channels(ihk_os_t os)
|
|
{
|
|
int i;
|
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
|
|
ihk_host_os_set_usrdata(os, NULL);
|
|
|
|
for (i = 0; i < usrdata->num_channels; i++) {
|
|
if (usrdata->channels[i].c) {
|
|
// ihk_ikc_disconnect(usrdata->channels[i].c);
|
|
ihk_ikc_free_channel(usrdata->channels[i].c);
|
|
__destroy_ikc_channel(os, usrdata->channels + i);
|
|
printk("Channel #%d freed.\n", i);
|
|
}
|
|
}
|
|
free_page((unsigned long)usrdata->mcctrl_doorbell_va);
|
|
|
|
kfree(usrdata->channels);
|
|
kfree(usrdata);
|
|
}
|
|
|
|
/*
|
|
* callback funciton for McKernel procfs
|
|
*
|
|
* This function conforms to the 2) way of fs/proc/generic.c
|
|
* from linux-2.6.39.4.
|
|
*/
|
|
|
|
static void *channel;
|
|
|
|
int mckernel_procfs_read(char *buffer, char **start, off_t offset,
|
|
int count, int *peof, void *dat)
|
|
{
|
|
struct procfs_data *data = dat;
|
|
struct procfs_read *r;
|
|
struct ikc_scd_packet isp;
|
|
int ret;
|
|
unsigned long pbuf;
|
|
|
|
if (count <= 0 || dat == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
pbuf = virt_to_phys(buffer);
|
|
if (pbuf / PAGE_SIZE != (pbuf + count - 1) / PAGE_SIZE) {
|
|
/* Truncate the read count upto the nearest page boundary */
|
|
count = ((pbuf + count - 1) / PAGE_SIZE) * PAGE_SIZE - pbuf;
|
|
}
|
|
r = kmalloc(sizeof(struct procfs_read), GFP_KERNEL);
|
|
if (r == NULL) {
|
|
return -ENOMEM;
|
|
}
|
|
retry:
|
|
r->pbuf = pbuf;
|
|
r->eof = 0;
|
|
r->ret = 0;
|
|
r->offset = offset;
|
|
r->count = count;
|
|
strncpy(r->fname, data->fname, PROCFS_NAME_MAX);
|
|
isp.msg = SCD_MSG_PROCFS_REQUEST;
|
|
isp.ref = data->cpu;
|
|
isp.arg = virt_to_phys(r);
|
|
mcctrl_ikc_send(data->os, data->cpu, &isp);
|
|
channel = NULL;
|
|
/* Wait for a reply. */
|
|
wait_event_interruptible(procfsq, procfsq_channel == virt_to_phys(r));
|
|
/* Wake up and check the result. */
|
|
if ((r->ret == 0) && (r->eof != 1)) {
|
|
/* A miss-hit has occurred (caused by migration e.g.).
|
|
* We simply retry the query.
|
|
*/
|
|
goto retry;
|
|
}
|
|
if (r->eof == 1) {
|
|
*peof = 1;
|
|
}
|
|
ret = r->ret;
|
|
kfree(r);
|
|
|
|
return ret;
|
|
}
|