blob: 9959c762da2f8ec1f5cb0fde48021598f3deecfd [file] [log] [blame]
Michael Buesch96d63c02006-06-26 00:25:00 -07001/*
2 * RNG driver for AMD RNGs
3 *
4 * Copyright 2005 (c) MontaVista Software, Inc.
5 *
6 * with the majority of the code coming from:
7 *
8 * Hardware driver for the Intel/AMD/VIA Random Number Generators (RNG)
9 * (c) Copyright 2003 Red Hat Inc <jgarzik@redhat.com>
10 *
11 * derived from
12 *
13 * Hardware driver for the AMD 768 Random Number Generator (RNG)
Alan Cox77122d02008-10-27 15:10:23 +000014 * (c) Copyright 2001 Red Hat Inc
Michael Buesch96d63c02006-06-26 00:25:00 -070015 *
16 * derived from
17 *
18 * Hardware driver for Intel i810 Random Number Generator (RNG)
19 * Copyright 2000,2001 Jeff Garzik <jgarzik@pobox.com>
20 * Copyright 2000,2001 Philipp Rumpf <prumpf@mandrakesoft.com>
21 *
22 * This file is licensed under the terms of the GNU General Public
23 * License version 2. This program is licensed "as is" without any
24 * warranty of any kind, whether express or implied.
25 */
26
Patrick McHardy984e9762007-11-21 12:24:45 +080027#include <linux/delay.h>
Corentin LABBE055ae892016-08-26 13:11:32 +020028#include <linux/hw_random.h>
29#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/pci.h>
Michael Buesch96d63c02006-06-26 00:25:00 -070032
Corentin LABBEf8169bf2016-08-26 13:11:31 +020033#define DRV_NAME "AMD768-HWRNG"
Michael Buesch96d63c02006-06-26 00:25:00 -070034
Corentin LABBE3c343a32016-08-26 13:11:35 +020035#define RNGDATA 0x00
36#define RNGDONE 0x04
37#define PMBASE_OFFSET 0xF0
38#define PMBASE_SIZE 8
39
Michael Buesch96d63c02006-06-26 00:25:00 -070040/*
41 * Data for PCI driver interface
42 *
43 * This data only exists for exporting the supported
44 * PCI ids via MODULE_DEVICE_TABLE. We do not actually
45 * register a pci_driver, because someone else might one day
46 * want to register another driver on the same PCI id.
47 */
48static const struct pci_device_id pci_tbl[] = {
Joe Perches409a7362009-06-25 13:50:53 +080049 { PCI_VDEVICE(AMD, 0x7443), 0, },
50 { PCI_VDEVICE(AMD, 0x746b), 0, },
Michael Buesch96d63c02006-06-26 00:25:00 -070051 { 0, }, /* terminate list */
52};
53MODULE_DEVICE_TABLE(pci, pci_tbl);
54
Corentin LABBE7bad2cc2016-08-26 13:11:34 +020055struct amd768_priv {
Corentin LABBE3c343a32016-08-26 13:11:35 +020056 void __iomem *iobase;
Corentin LABBE7bad2cc2016-08-26 13:11:34 +020057 struct pci_dev *pcidev;
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -040058 u32 pmbase;
Corentin LABBE7bad2cc2016-08-26 13:11:34 +020059};
Michael Buesch96d63c02006-06-26 00:25:00 -070060
Corentin LABBE85962d22016-08-26 13:11:36 +020061static int amd_rng_read(struct hwrng *rng, void *buf, size_t max, bool wait)
Michael Buesch96d63c02006-06-26 00:25:00 -070062{
Corentin LABBE85962d22016-08-26 13:11:36 +020063 u32 *data = buf;
Corentin LABBE7bad2cc2016-08-26 13:11:34 +020064 struct amd768_priv *priv = (struct amd768_priv *)rng->priv;
Corentin LABBE85962d22016-08-26 13:11:36 +020065 size_t read = 0;
66 /* We will wait at maximum one time per read */
67 int timeout = max / 4 + 1;
Michael Buesch96d63c02006-06-26 00:25:00 -070068
Corentin LABBE85962d22016-08-26 13:11:36 +020069 /*
70 * RNG data is available when RNGDONE is set to 1
71 * New random numbers are generated approximately 128 microseconds
72 * after RNGDATA is read
73 */
74 while (read < max) {
75 if (ioread32(priv->iobase + RNGDONE) == 0) {
76 if (wait) {
77 /* Delay given by datasheet */
78 usleep_range(128, 196);
79 if (timeout-- == 0)
80 return read;
81 } else {
82 return 0;
83 }
84 } else {
85 *data = ioread32(priv->iobase + RNGDATA);
86 data++;
87 read += 4;
88 }
Patrick McHardy984e9762007-11-21 12:24:45 +080089 }
Michael Buesch96d63c02006-06-26 00:25:00 -070090
Corentin LABBE85962d22016-08-26 13:11:36 +020091 return read;
Michael Buesch96d63c02006-06-26 00:25:00 -070092}
93
94static int amd_rng_init(struct hwrng *rng)
95{
Corentin LABBE7bad2cc2016-08-26 13:11:34 +020096 struct amd768_priv *priv = (struct amd768_priv *)rng->priv;
Michael Buesch96d63c02006-06-26 00:25:00 -070097 u8 rnen;
98
Corentin LABBE7bad2cc2016-08-26 13:11:34 +020099 pci_read_config_byte(priv->pcidev, 0x40, &rnen);
Corentin LABBE1c335d42016-08-26 13:11:30 +0200100 rnen |= BIT(7); /* RNG on */
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200101 pci_write_config_byte(priv->pcidev, 0x40, rnen);
Michael Buesch96d63c02006-06-26 00:25:00 -0700102
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200103 pci_read_config_byte(priv->pcidev, 0x41, &rnen);
Corentin LABBE1c335d42016-08-26 13:11:30 +0200104 rnen |= BIT(7); /* PMIO enable */
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200105 pci_write_config_byte(priv->pcidev, 0x41, rnen);
Michael Buesch96d63c02006-06-26 00:25:00 -0700106
107 return 0;
108}
109
110static void amd_rng_cleanup(struct hwrng *rng)
111{
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200112 struct amd768_priv *priv = (struct amd768_priv *)rng->priv;
Michael Buesch96d63c02006-06-26 00:25:00 -0700113 u8 rnen;
114
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200115 pci_read_config_byte(priv->pcidev, 0x40, &rnen);
Corentin LABBE1c335d42016-08-26 13:11:30 +0200116 rnen &= ~BIT(7); /* RNG off */
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200117 pci_write_config_byte(priv->pcidev, 0x40, rnen);
Michael Buesch96d63c02006-06-26 00:25:00 -0700118}
119
Michael Buesch96d63c02006-06-26 00:25:00 -0700120static struct hwrng amd_rng = {
121 .name = "amd",
122 .init = amd_rng_init,
123 .cleanup = amd_rng_cleanup,
Corentin LABBE85962d22016-08-26 13:11:36 +0200124 .read = amd_rng_read,
Michael Buesch96d63c02006-06-26 00:25:00 -0700125};
126
Michael Buesch96d63c02006-06-26 00:25:00 -0700127static int __init mod_init(void)
128{
129 int err = -ENODEV;
130 struct pci_dev *pdev = NULL;
131 const struct pci_device_id *ent;
132 u32 pmbase;
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200133 struct amd768_priv *priv;
Michael Buesch96d63c02006-06-26 00:25:00 -0700134
135 for_each_pci_dev(pdev) {
136 ent = pci_match_id(pci_tbl, pdev);
137 if (ent)
138 goto found;
139 }
140 /* Device not found. */
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200141 return -ENODEV;
Michael Buesch96d63c02006-06-26 00:25:00 -0700142
143found:
144 err = pci_read_config_dword(pdev, 0x58, &pmbase);
145 if (err)
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200146 return err;
147
Michael Buesch96d63c02006-06-26 00:25:00 -0700148 pmbase &= 0x0000FF00;
149 if (pmbase == 0)
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200150 return -EIO;
151
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -0400152 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Wei Yongjunf7eca272016-09-16 01:49:41 +0000153 if (!priv)
154 return -ENOMEM;
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200155
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -0400156 if (!request_region(pmbase + PMBASE_OFFSET, PMBASE_SIZE, DRV_NAME)) {
Corentin LABBEf8169bf2016-08-26 13:11:31 +0200157 dev_err(&pdev->dev, DRV_NAME " region 0x%x already in use!\n",
Dmitry Eremin-Solenikovbd68ccb2011-04-27 23:21:15 +0400158 pmbase + 0xF0);
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -0400159 err = -EBUSY;
160 goto out;
Dmitry Eremin-Solenikovbd68ccb2011-04-27 23:21:15 +0400161 }
Corentin LABBE3c343a32016-08-26 13:11:35 +0200162
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -0400163 priv->iobase = ioport_map(pmbase + PMBASE_OFFSET, PMBASE_SIZE);
Wei Yongjunf7eca272016-09-16 01:49:41 +0000164 if (!priv->iobase) {
Corentin LABBE3c343a32016-08-26 13:11:35 +0200165 pr_err(DRV_NAME "Cannot map ioport\n");
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -0400166 err = -EINVAL;
167 goto err_iomap;
Corentin LABBE3c343a32016-08-26 13:11:35 +0200168 }
169
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200170 amd_rng.priv = (unsigned long)priv;
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -0400171 priv->pmbase = pmbase;
Corentin LABBE7bad2cc2016-08-26 13:11:34 +0200172 priv->pcidev = pdev;
Michael Buesch96d63c02006-06-26 00:25:00 -0700173
Corentin LABBEf8169bf2016-08-26 13:11:31 +0200174 pr_info(DRV_NAME " detected\n");
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -0400175 err = hwrng_register(&amd_rng);
176 if (err) {
177 pr_err(DRV_NAME " registering failed (%d)\n", err);
178 goto err_hwrng;
179 }
180 return 0;
181
182err_hwrng:
183 ioport_unmap(priv->iobase);
184err_iomap:
185 release_region(pmbase + PMBASE_OFFSET, PMBASE_SIZE);
186out:
187 kfree(priv);
188 return err;
Michael Buesch96d63c02006-06-26 00:25:00 -0700189}
190
191static void __exit mod_exit(void)
192{
Prarit Bhargava5d6f7b32017-03-14 07:36:01 -0400193 struct amd768_priv *priv;
194
195 priv = (struct amd768_priv *)amd_rng.priv;
196
197 hwrng_unregister(&amd_rng);
198
199 ioport_unmap(priv->iobase);
200
201 release_region(priv->pmbase + PMBASE_OFFSET, PMBASE_SIZE);
202
203 kfree(priv);
Michael Buesch96d63c02006-06-26 00:25:00 -0700204}
205
Michael Buesch56fb5fe2007-01-10 23:15:43 -0800206module_init(mod_init);
Michael Buesch96d63c02006-06-26 00:25:00 -0700207module_exit(mod_exit);
208
209MODULE_AUTHOR("The Linux Kernel team");
210MODULE_DESCRIPTION("H/W RNG driver for AMD chipsets");
211MODULE_LICENSE("GPL");