cregit-Linux how code gets into the kernel

Release 4.10 drivers/char/hw_random/geode-rng.c

/*
 * RNG driver for AMD Geode RNGs
 *
 * Copyright 2005 (c) MontaVista Software, Inc.
 *
 * with the majority of the code coming from:
 *
 * Hardware driver for the Intel/AMD/VIA Random Number Generators (RNG)
 * (c) Copyright 2003 Red Hat Inc <jgarzik@redhat.com>
 *
 * derived from
 *
 * Hardware driver for the AMD 768 Random Number Generator (RNG)
 * (c) Copyright 2001 Red Hat Inc
 *
 * derived from
 *
 * Hardware driver for Intel i810 Random Number Generator (RNG)
 * Copyright 2000,2001 Jeff Garzik <jgarzik@pobox.com>
 * Copyright 2000,2001 Philipp Rumpf <prumpf@mandrakesoft.com>
 *
 * This file is licensed under  the terms of the GNU General Public
 * License version 2. This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include <linux/delay.h>
#include <linux/hw_random.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>


#define GEODE_RNG_DATA_REG   0x50

#define GEODE_RNG_STATUS_REG 0x54

/*
 * Data for PCI driver interface
 *
 * This data only exists for exporting the supported
 * PCI ids via MODULE_DEVICE_TABLE.  We do not actually
 * register a pci_driver, because someone else might one day
 * want to register another driver on the same PCI id.
 */

static const struct pci_device_id pci_tbl[] = {
	{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_LX_AES), 0, },
	{ 0, },	/* terminate list */
};
MODULE_DEVICE_TABLE(pci, pci_tbl);



static int geode_rng_data_read(struct hwrng *rng, u32 *data) { void __iomem *mem = (void __iomem *)rng->priv; *data = readl(mem + GEODE_RNG_DATA_REG); return 4; }

Contributors

PersonTokensPropCommitsCommitProp
michael bueschmichael buesch42100.00%1100.00%
Total42100.00%1100.00%


static int geode_rng_data_present(struct hwrng *rng, int wait) { void __iomem *mem = (void __iomem *)rng->priv; int data, i; for (i = 0; i < 20; i++) { data = !!(readl(mem + GEODE_RNG_STATUS_REG)); if (data || !wait) break; udelay(10); } return data; }

Contributors

PersonTokensPropCommitsCommitProp
patrick mchardypatrick mchardy4153.25%150.00%
michael bueschmichael buesch3646.75%150.00%
Total77100.00%2100.00%

static struct hwrng geode_rng = { .name = "geode", .data_present = geode_rng_data_present, .data_read = geode_rng_data_read, };
static int __init mod_init(void) { struct pci_dev *pdev = NULL; const struct pci_device_id *ent; void __iomem *mem; unsigned long rng_base; for_each_pci_dev(pdev) { ent = pci_match_id(pci_tbl, pdev); if (ent) { rng_base = pci_resource_start(pdev, 0); if (rng_base == 0) return -ENODEV; mem = devm_ioremap(&pdev->dev, rng_base, 0x58); if (!mem) return -ENOMEM; geode_rng.priv = (unsigned long)mem; pr_info("AMD Geode RNG detected\n"); return devm_hwrng_register(&pdev->dev, &geode_rng); } } /* Device not found. */ return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
michael bueschmichael buesch9877.78%125.00%
prasannakumar muralidharanprasannakumar muralidharan2419.05%125.00%
wei yongjunwei yongjun32.38%125.00%
sudip mukherjeesudip mukherjee10.79%125.00%
Total126100.00%4100.00%


static void __exit mod_exit(void) { }

Contributors

PersonTokensPropCommitsCommitProp
michael bueschmichael buesch787.50%150.00%
prasannakumar muralidharanprasannakumar muralidharan112.50%150.00%
Total8100.00%2100.00%

module_init(mod_init); module_exit(mod_exit); MODULE_DESCRIPTION("H/W RNG driver for AMD Geode LX CPUs"); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
michael bueschmichael buesch27276.40%222.22%
patrick mchardypatrick mchardy4312.08%111.11%
prasannakumar muralidharanprasannakumar muralidharan318.71%222.22%
joe perchesjoe perches51.40%111.11%
wei yongjunwei yongjun30.84%111.11%
sudip mukherjeesudip mukherjee10.28%111.11%
alan coxalan cox10.28%111.11%
Total356100.00%9100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.