cregit-Linux how code gets into the kernel

Release 4.11 drivers/char/hw_random/amd-rng.c

/*
 * RNG driver for AMD 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/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>


#define DRV_NAME "AMD768-HWRNG"


#define RNGDATA		0x00

#define RNGDONE		0x04

#define PMBASE_OFFSET	0xF0

#define PMBASE_SIZE	8

/*
 * 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, 0x7443), 0, },
	{ PCI_VDEVICE(AMD, 0x746b), 0, },
	{ 0, },	/* terminate list */
};
MODULE_DEVICE_TABLE(pci, pci_tbl);


struct amd768_priv {
	
void __iomem *iobase;
	
struct pci_dev *pcidev;
	
u32 pmbase;
};


static int amd_rng_read(struct hwrng *rng, void *buf, size_t max, bool wait) { u32 *data = buf; struct amd768_priv *priv = (struct amd768_priv *)rng->priv; size_t read = 0; /* We will wait at maximum one time per read */ int timeout = max / 4 + 1; /* * RNG data is available when RNGDONE is set to 1 * New random numbers are generated approximately 128 microseconds * after RNGDATA is read */ while (read < max) { if (ioread32(priv->iobase + RNGDONE) == 0) { if (wait) { /* Delay given by datasheet */ usleep_range(128, 196); if (timeout-- == 0) return read; } else { return 0; } } else { *data = ioread32(priv->iobase + RNGDATA); data++; read += 4; } } return read; }

Contributors

PersonTokensPropCommitsCommitProp
Corentin Labbe8865.19%360.00%
Michael Büsch3223.70%120.00%
Patrick McHardy1511.11%120.00%
Total135100.00%5100.00%


static int amd_rng_init(struct hwrng *rng) { struct amd768_priv *priv = (struct amd768_priv *)rng->priv; u8 rnen; pci_read_config_byte(priv->pcidev, 0x40, &rnen); rnen |= BIT(7); /* RNG on */ pci_write_config_byte(priv->pcidev, 0x40, rnen); pci_read_config_byte(priv->pcidev, 0x41, &rnen); rnen |= BIT(7); /* PMIO enable */ pci_write_config_byte(priv->pcidev, 0x41, rnen); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Michael Büsch6165.59%133.33%
Corentin Labbe3234.41%266.67%
Total93100.00%3100.00%


static void amd_rng_cleanup(struct hwrng *rng) { struct amd768_priv *priv = (struct amd768_priv *)rng->priv; u8 rnen; pci_read_config_byte(priv->pcidev, 0x40, &rnen); rnen &= ~BIT(7); /* RNG off */ pci_write_config_byte(priv->pcidev, 0x40, rnen); }

Contributors

PersonTokensPropCommitsCommitProp
Michael Büsch3761.67%133.33%
Corentin Labbe2338.33%266.67%
Total60100.00%3100.00%

static struct hwrng amd_rng = { .name = "amd", .init = amd_rng_init, .cleanup = amd_rng_cleanup, .read = amd_rng_read, };
static int __init mod_init(void) { int err = -ENODEV; struct pci_dev *pdev = NULL; const struct pci_device_id *ent; u32 pmbase; struct amd768_priv *priv; for_each_pci_dev(pdev) { ent = pci_match_id(pci_tbl, pdev); if (ent) goto found; } /* Device not found. */ return -ENODEV; found: err = pci_read_config_dword(pdev, 0x58, &pmbase); if (err) return err; pmbase &= 0x0000FF00; if (pmbase == 0) return -EIO; priv = kzalloc(sizeof(*priv), GFP_KERNEL); if (!priv) return -ENOMEM; if (!request_region(pmbase + PMBASE_OFFSET, PMBASE_SIZE, DRV_NAME)) { dev_err(&pdev->dev, DRV_NAME " region 0x%x already in use!\n", pmbase + 0xF0); err = -EBUSY; goto out; } priv->iobase = ioport_map(pmbase + PMBASE_OFFSET, PMBASE_SIZE); if (!priv->iobase) { pr_err(DRV_NAME "Cannot map ioport\n"); err = -EINVAL; goto err_iomap; } amd_rng.priv = (unsigned long)priv; priv->pmbase = pmbase; priv->pcidev = pdev; pr_info(DRV_NAME " detected\n"); err = hwrng_register(&amd_rng); if (err) { pr_err(DRV_NAME " registering failed (%d)\n", err); goto err_hwrng; } return 0; err_hwrng: ioport_unmap(priv->iobase); err_iomap: release_region(pmbase + PMBASE_OFFSET, PMBASE_SIZE); out: kfree(priv); return err; }

Contributors

PersonTokensPropCommitsCommitProp
Michael Büsch9834.88%111.11%
Prarit Bhargava7426.33%111.11%
Corentin Labbe7426.33%333.33%
Dmitry Baryshkov289.96%111.11%
Wei Yongjun51.78%111.11%
PrasannaKumar Muralidharan10.36%111.11%
Sudip Mukherjee10.36%111.11%
Total281100.00%9100.00%


static void __exit mod_exit(void) { struct amd768_priv *priv; priv = (struct amd768_priv *)amd_rng.priv; hwrng_unregister(&amd_rng); ioport_unmap(priv->iobase); release_region(priv->pmbase + PMBASE_OFFSET, PMBASE_SIZE); kfree(priv); }

Contributors

PersonTokensPropCommitsCommitProp
Prarit Bhargava4787.04%150.00%
Michael Büsch712.96%150.00%
Total54100.00%2100.00%

module_init(mod_init); module_exit(mod_exit); MODULE_AUTHOR("The Linux Kernel team"); MODULE_DESCRIPTION("H/W RNG driver for AMD chipsets"); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
Michael Büsch33443.15%212.50%
Corentin Labbe25332.69%637.50%
Prarit Bhargava12416.02%16.25%
Dmitry Baryshkov283.62%16.25%
Patrick McHardy172.20%16.25%
Joe Perches101.29%16.25%
Wei Yongjun50.65%16.25%
Alan Cox10.13%16.25%
PrasannaKumar Muralidharan10.13%16.25%
Sudip Mukherjee10.13%16.25%
Total774100.00%16100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.