cregit-Linux how code gets into the kernel

Release 4.7 drivers/tty/hvc/hvc_dcc.c

Directory: drivers/tty/hvc
/* Copyright (c) 2010, 2014 The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program 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.
 */

#include <linux/init.h>

#include <asm/dcc.h>
#include <asm/processor.h>

#include "hvc_console.h"

/* DCC Status Bits */

#define DCC_STATUS_RX		(1 << 30)

#define DCC_STATUS_TX		(1 << 29)


static int hvc_dcc_put_chars(uint32_t vt, const char *buf, int count) { int i; for (i = 0; i < count; i++) { while (__dcc_getstatus() & DCC_STATUS_TX) cpu_relax(); __dcc_putchar(buf[i]); } return count; }

Contributors

PersonTokensPropCommitsCommitProp
daniel walkerdaniel walker56100.00%1100.00%
Total56100.00%1100.00%


static int hvc_dcc_get_chars(uint32_t vt, char *buf, int count) { int i; for (i = 0; i < count; ++i) if (__dcc_getstatus() & DCC_STATUS_RX) buf[i] = __dcc_getchar(); else break; return i; }

Contributors

PersonTokensPropCommitsCommitProp
daniel walkerdaniel walker4892.31%150.00%
stephen boydstephen boyd47.69%150.00%
Total52100.00%2100.00%


static bool hvc_dcc_check(void) { unsigned long time = jiffies + (HZ / 10); /* Write a test character to check if it is handled */ __dcc_putchar('\n'); while (time_is_after_jiffies(time)) { if (!(__dcc_getstatus() & DCC_STATUS_TX)) return true; } return false; }

Contributors

PersonTokensPropCommitsCommitProp
rob herringrob herring51100.00%1100.00%
Total51100.00%1100.00%

static const struct hv_ops hvc_dcc_get_put_ops = { .get_chars = hvc_dcc_get_chars, .put_chars = hvc_dcc_put_chars, };
static int __init hvc_dcc_console_init(void) { int ret; if (!hvc_dcc_check()) return -ENODEV; /* Returns -1 if error */ ret = hvc_instantiate(0, 0, &hvc_dcc_get_put_ops); return ret < 0 ? -ENODEV : 0; }

Contributors

PersonTokensPropCommitsCommitProp
daniel walkerdaniel walker2248.89%133.33%
timur tabitimur tabi1328.89%133.33%
rob herringrob herring1022.22%133.33%
Total45100.00%3100.00%

console_initcall(hvc_dcc_console_init);
static int __init hvc_dcc_init(void) { struct hvc_struct *p; if (!hvc_dcc_check()) return -ENODEV; p = hvc_alloc(0, 0, &hvc_dcc_get_put_ops, 128); return PTR_ERR_OR_ZERO(p); }

Contributors

PersonTokensPropCommitsCommitProp
daniel walkerdaniel walker2352.27%133.33%
timur tabitimur tabi1125.00%133.33%
rob herringrob herring1022.73%133.33%
Total44100.00%3100.00%

device_initcall(hvc_dcc_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
daniel walkerdaniel walker19766.11%120.00%
rob herringrob herring7123.83%120.00%
timur tabitimur tabi248.05%120.00%
stephen boydstephen boyd41.34%120.00%
christopher covingtonchristopher covington20.67%120.00%
Total298100.00%5100.00%
Directory: drivers/tty/hvc
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}