1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2004 IBM Corporation
13 * Device driver for TCG/TCPA TPM (trusted platform module).
14 * Specifications at www.trustedcomputinggroup.org
17 #include <linux/platform_device.h>
18 #include <linux/slab.h>
21 /* National definitions */
24 TPM_NSC_BASE0_HI = 0x60,
25 TPM_NSC_BASE0_LO = 0x61,
26 TPM_NSC_BASE1_HI = 0x62,
27 TPM_NSC_BASE1_LO = 0x63
40 enum tpm_nsc_status_loc {
48 NSC_STATUS_OBF = 0x01, /* output buffer full */
49 NSC_STATUS_IBF = 0x02, /* input buffer full */
50 NSC_STATUS_F0 = 0x04, /* F0 */
51 NSC_STATUS_A2 = 0x08, /* A2 */
52 NSC_STATUS_RDY = 0x10, /* ready to receive command */
53 NSC_STATUS_IBR = 0x20 /* ready to receive data */
57 enum tpm_nsc_cmd_mode {
58 NSC_COMMAND_NORMAL = 0x01, /* normal mode */
59 NSC_COMMAND_EOC = 0x03,
60 NSC_COMMAND_CANCEL = 0x22
68 * Wait for a certain status to appear
70 static int wait_for_stat(struct tpm_chip *chip, u8 mask, u8 val, u8 * data)
72 struct tpm_nsc_priv *priv = dev_get_drvdata(&chip->dev);
75 /* status immediately available check */
76 *data = inb(priv->base + NSC_STATUS);
77 if ((*data & mask) == val)
81 stop = jiffies + 10 * HZ;
84 *data = inb(priv->base + 1);
85 if ((*data & mask) == val)
88 while (time_before(jiffies, stop));
93 static int nsc_wait_for_ready(struct tpm_chip *chip)
95 struct tpm_nsc_priv *priv = dev_get_drvdata(&chip->dev);
99 /* status immediately available check */
100 status = inb(priv->base + NSC_STATUS);
101 if (status & NSC_STATUS_OBF)
102 status = inb(priv->base + NSC_DATA);
103 if (status & NSC_STATUS_RDY)
106 /* wait for status */
107 stop = jiffies + 100;
110 status = inb(priv->base + NSC_STATUS);
111 if (status & NSC_STATUS_OBF)
112 status = inb(priv->base + NSC_DATA);
113 if (status & NSC_STATUS_RDY)
116 while (time_before(jiffies, stop));
118 dev_info(&chip->dev, "wait for ready failed\n");
123 static int tpm_nsc_recv(struct tpm_chip *chip, u8 * buf, size_t count)
125 struct tpm_nsc_priv *priv = dev_get_drvdata(&chip->dev);
134 if (wait_for_stat(chip, NSC_STATUS_F0, NSC_STATUS_F0, &data) < 0) {
135 dev_err(&chip->dev, "F0 timeout\n");
139 data = inb(priv->base + NSC_DATA);
140 if (data != NSC_COMMAND_NORMAL) {
141 dev_err(&chip->dev, "not in normal mode (0x%x)\n",
146 /* read the whole packet */
147 for (p = buffer; p < &buffer[count]; p++) {
149 (chip, NSC_STATUS_OBF, NSC_STATUS_OBF, &data) < 0) {
151 "OBF timeout (while reading data)\n");
154 if (data & NSC_STATUS_F0)
156 *p = inb(priv->base + NSC_DATA);
159 if ((data & NSC_STATUS_F0) == 0 &&
160 (wait_for_stat(chip, NSC_STATUS_F0, NSC_STATUS_F0, &data) < 0)) {
161 dev_err(&chip->dev, "F0 not set\n");
165 data = inb(priv->base + NSC_DATA);
166 if (data != NSC_COMMAND_EOC) {
168 "expected end of command(0x%x)\n", data);
172 native_size = (__force __be32 *) (buf + 2);
173 size = be32_to_cpu(*native_size);
181 static int tpm_nsc_send(struct tpm_chip *chip, u8 * buf, size_t count)
183 struct tpm_nsc_priv *priv = dev_get_drvdata(&chip->dev);
188 * If we hit the chip with back to back commands it locks up
189 * and never set IBF. Hitting it with this "hammer" seems to
190 * fix it. Not sure why this is needed, we followed the flow
191 * chart in the manual to the letter.
193 outb(NSC_COMMAND_CANCEL, priv->base + NSC_COMMAND);
195 if (nsc_wait_for_ready(chip) != 0)
198 if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) {
199 dev_err(&chip->dev, "IBF timeout\n");
203 outb(NSC_COMMAND_NORMAL, priv->base + NSC_COMMAND);
204 if (wait_for_stat(chip, NSC_STATUS_IBR, NSC_STATUS_IBR, &data) < 0) {
205 dev_err(&chip->dev, "IBR timeout\n");
209 for (i = 0; i < count; i++) {
210 if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) {
212 "IBF timeout (while writing data)\n");
215 outb(buf[i], priv->base + NSC_DATA);
218 if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) {
219 dev_err(&chip->dev, "IBF timeout\n");
222 outb(NSC_COMMAND_EOC, priv->base + NSC_COMMAND);
227 static void tpm_nsc_cancel(struct tpm_chip *chip)
229 struct tpm_nsc_priv *priv = dev_get_drvdata(&chip->dev);
231 outb(NSC_COMMAND_CANCEL, priv->base + NSC_COMMAND);
234 static u8 tpm_nsc_status(struct tpm_chip *chip)
236 struct tpm_nsc_priv *priv = dev_get_drvdata(&chip->dev);
238 return inb(priv->base + NSC_STATUS);
241 static bool tpm_nsc_req_canceled(struct tpm_chip *chip, u8 status)
243 return (status == NSC_STATUS_RDY);
246 static const struct tpm_class_ops tpm_nsc = {
247 .recv = tpm_nsc_recv,
248 .send = tpm_nsc_send,
249 .cancel = tpm_nsc_cancel,
250 .status = tpm_nsc_status,
251 .req_complete_mask = NSC_STATUS_OBF,
252 .req_complete_val = NSC_STATUS_OBF,
253 .req_canceled = tpm_nsc_req_canceled,
256 static struct platform_device *pdev = NULL;
258 static void tpm_nsc_remove(struct device *dev)
260 struct tpm_chip *chip = dev_get_drvdata(dev);
261 struct tpm_nsc_priv *priv = dev_get_drvdata(&chip->dev);
263 tpm_chip_unregister(chip);
264 release_region(priv->base, 2);
267 static SIMPLE_DEV_PM_OPS(tpm_nsc_pm, tpm_pm_suspend, tpm_pm_resume);
269 static struct platform_driver nsc_drv = {
276 static inline int tpm_read_index(int base, int index)
279 return inb(base+1) & 0xFF;
282 static inline void tpm_write_index(int base, int index, int value)
285 outb(value & 0xFF, base+1);
288 static int __init init_nsc(void)
292 int nscAddrBase = TPM_ADDR;
293 struct tpm_chip *chip;
295 struct tpm_nsc_priv *priv;
297 /* verify that it is a National part (SID) */
298 if (tpm_read_index(TPM_ADDR, NSC_SID_INDEX) != 0xEF) {
299 nscAddrBase = (tpm_read_index(TPM_SUPERIO_ADDR, 0x2C)<<8)|
300 (tpm_read_index(TPM_SUPERIO_ADDR, 0x2B)&0xFE);
301 if (tpm_read_index(nscAddrBase, NSC_SID_INDEX) != 0xF6)
305 err = platform_driver_register(&nsc_drv);
309 hi = tpm_read_index(nscAddrBase, TPM_NSC_BASE0_HI);
310 lo = tpm_read_index(nscAddrBase, TPM_NSC_BASE0_LO);
313 /* enable the DPM module */
314 tpm_write_index(nscAddrBase, NSC_LDC_INDEX, 0x01);
316 pdev = platform_device_alloc("tpm_nscl0", -1);
322 pdev->num_resources = 0;
323 pdev->dev.driver = &nsc_drv.driver;
324 pdev->dev.release = tpm_nsc_remove;
326 if ((rc = platform_device_add(pdev)) < 0)
329 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
337 if (request_region(base, 2, "tpm_nsc0") == NULL ) {
342 chip = tpmm_chip_alloc(&pdev->dev, &tpm_nsc);
348 dev_set_drvdata(&chip->dev, priv);
350 rc = tpm_chip_register(chip);
354 dev_dbg(&pdev->dev, "NSC TPM detected\n");
356 "NSC LDN 0x%x, SID 0x%x, SRID 0x%x\n",
357 tpm_read_index(nscAddrBase,0x07), tpm_read_index(nscAddrBase,0x20),
358 tpm_read_index(nscAddrBase,0x27));
360 "NSC SIOCF1 0x%x SIOCF5 0x%x SIOCF6 0x%x SIOCF8 0x%x\n",
361 tpm_read_index(nscAddrBase,0x21), tpm_read_index(nscAddrBase,0x25),
362 tpm_read_index(nscAddrBase,0x26), tpm_read_index(nscAddrBase,0x28));
363 dev_dbg(&pdev->dev, "NSC IO Base0 0x%x\n",
364 (tpm_read_index(nscAddrBase,0x60) << 8) | tpm_read_index(nscAddrBase,0x61));
365 dev_dbg(&pdev->dev, "NSC IO Base1 0x%x\n",
366 (tpm_read_index(nscAddrBase,0x62) << 8) | tpm_read_index(nscAddrBase,0x63));
367 dev_dbg(&pdev->dev, "NSC Interrupt number and wakeup 0x%x\n",
368 tpm_read_index(nscAddrBase,0x70));
369 dev_dbg(&pdev->dev, "NSC IRQ type select 0x%x\n",
370 tpm_read_index(nscAddrBase,0x71));
372 "NSC DMA channel select0 0x%x, select1 0x%x\n",
373 tpm_read_index(nscAddrBase,0x74), tpm_read_index(nscAddrBase,0x75));
376 "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
377 tpm_read_index(nscAddrBase,0xF0), tpm_read_index(nscAddrBase,0xF1),
378 tpm_read_index(nscAddrBase,0xF2), tpm_read_index(nscAddrBase,0xF3),
379 tpm_read_index(nscAddrBase,0xF4), tpm_read_index(nscAddrBase,0xF5),
380 tpm_read_index(nscAddrBase,0xF6), tpm_read_index(nscAddrBase,0xF7),
381 tpm_read_index(nscAddrBase,0xF8), tpm_read_index(nscAddrBase,0xF9));
384 "NSC TPM revision %d\n",
385 tpm_read_index(nscAddrBase, 0x27) & 0x1F);
390 release_region(base, 2);
392 platform_device_del(pdev);
394 platform_device_put(pdev);
396 platform_driver_unregister(&nsc_drv);
400 static void __exit cleanup_nsc(void)
403 tpm_nsc_remove(&pdev->dev);
404 platform_device_unregister(pdev);
407 platform_driver_unregister(&nsc_drv);
410 module_init(init_nsc);
411 module_exit(cleanup_nsc);
414 MODULE_DESCRIPTION("TPM Driver");
415 MODULE_VERSION("2.0");
416 MODULE_LICENSE("GPL");