Blame view

drivers/parisc/hppb.c 2.46 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
8
  /*
  ** hppb.c:
  **      HP-PB bus driver for the NOVA and K-Class systems.
  **
  **      (c) Copyright 2002 Ryan Bradetich
  **      (c) Copyright 2002 Hewlett-Packard Company
  **
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
  **
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
12
13
14
15
  */
  
  #include <linux/types.h>
  #include <linux/init.h>
  #include <linux/mm.h>
  #include <linux/slab.h>
bec85e803   Frank Lichtenheld   hppb: Add missing...
16
  #include <linux/dma-mapping.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
18
19
20
21
  #include <linux/ioport.h>
  
  #include <asm/io.h>
  #include <asm/hardware.h>
  #include <asm/parisc-device.h>
9b8eeab01   Christoph Hellwig   parisc: move inte...
22
  #include "iommu.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
24
25
26
27
  struct hppb_card {
  	unsigned long hpa;
  	struct resource mmio_region;
  	struct hppb_card *next;
  };
df8e5bc6b   Adrian Bunk   parisc: drivers/p...
28
  static struct hppb_card hppb_card_head = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  	.hpa = 0,
  	.next = NULL,
  };
  
  #define IO_IO_LOW  offsetof(struct bc_module, io_io_low)
  #define IO_IO_HIGH offsetof(struct bc_module, io_io_high)
  
  /**
   * hppb_probe - Determine if the hppb driver should claim this device.
   * @dev: The device which has been found
   *
   * Determine if hppb driver should claim this chip (return 0) or not 
   * (return 1). If so, initialize the chip and tell other partners in crime 
   * they have work to do.
   */
cfe4fbfb2   Helge Deller   parisc: Fix secti...
44
  static int __init hppb_probe(struct parisc_device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
46
47
48
49
50
51
52
53
  {
  	int status;
  	struct hppb_card *card = &hppb_card_head;
  
  	while(card->next) {
  		card = card->next;
  	}
  
  	if(card->hpa) {
cb6fc18e9   Helge Deller   [PARISC] Use kzal...
54
  		card->next = kzalloc(sizeof(struct hppb_card), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
56
57
58
59
  		if(!card->next) {
  			printk(KERN_ERR "HP-PB: Unable to allocate memory.
  ");
  			return 1;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
61
  		card = card->next;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62

53f01bba4   Matthew Wilcox   [PARISC] Convert ...
63
  	card->hpa = dev->hpa.start;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
65
  	card->mmio_region.name = "HP-PB Bus";
  	card->mmio_region.flags = IORESOURCE_MEM;
53f01bba4   Matthew Wilcox   [PARISC] Convert ...
66
67
  	card->mmio_region.start = gsc_readl(dev->hpa.start + IO_IO_LOW);
  	card->mmio_region.end = gsc_readl(dev->hpa.start + IO_IO_HIGH) - 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
69
  
  	status = ccio_request_resource(dev, &card->mmio_region);
4ccac58e5   Helge Deller   parisc: Avoid war...
70
71
72
73
74
75
  
  	pr_info("Found GeckoBoa at %pap, bus space %pR,%s claimed.
  ",
  			&dev->hpa.start,
  			&card->mmio_region,
  			(status < 0) ? " not":"" );
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
76
77
78
  
          return 0;
  }
cfe4fbfb2   Helge Deller   parisc: Fix secti...
79
  static const struct parisc_device_id hppb_tbl[] __initconst = {
075b8783d   Ryan Bradetich   [PARISC] HPPB bus...
80
81
82
83
          { HPHW_BCPORT, HVERSION_REV_ANY_ID, 0x500, 0xc }, /* E25 and K */
          { HPHW_BCPORT, 0x0, 0x501, 0xc }, /* E35 */
          { HPHW_BCPORT, 0x0, 0x502, 0xc }, /* E45 */
          { HPHW_BCPORT, 0x0, 0x503, 0xc }, /* E55 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
84
85
          { 0, }
  };
cfe4fbfb2   Helge Deller   parisc: Fix secti...
86
  static struct parisc_driver hppb_driver __refdata = {
bdad1f836   Matthew Wilcox   [PARISC] Change t...
87
          .name =         "gecko_boa",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
88
89
90
91
92
          .id_table =     hppb_tbl,
  	.probe =        hppb_probe,
  };
  
  /**
4f63ba170   Joe Perches   drivers/parisc/: ...
93
   * hppb_init - HP-PB bus initialization procedure.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
96
97
98
99
100
   *
   * Register this driver.   
   */
  void __init hppb_init(void)
  {
          register_parisc_driver(&hppb_driver);
  }