Blame view

drivers/scsi/aacraid/nark.c 2.14 KB
239eab195   Mark Haverkamp   [SCSI] aacraid: B...
1
2
  /*
   *	Adaptec AAC series RAID controller driver
239eab195   Mark Haverkamp   [SCSI] aacraid: B...
3
4
5
6
   *
   * based on the old aacraid driver that is..
   * Adaptec aacraid device driver for Linux.
   *
c835e3727   Salyzyn, Mark   [SCSI] aacraid: d...
7
   * Copyright (c) 2006-2007 Adaptec, Inc. (aacraid@adaptec.com)
239eab195   Mark Haverkamp   [SCSI] aacraid: B...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2, or (at your option)
   * any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; see the file COPYING.  If not, write to
   * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
   *
   * Module Name:
   *  nark.c
   *
   * Abstract: Hardware Device Interface for NEMER/ARK
   *
   */
  
  #include <linux/pci.h>
  #include <linux/blkdev.h>
  
  #include <scsi/scsi_host.h>
  
  #include "aacraid.h"
  
  /**
   *	aac_nark_ioremap
   *	@size: mapping resize request
   *
   */
  static int aac_nark_ioremap(struct aac_dev * dev, u32 size)
  {
  	if (!size) {
  		iounmap(dev->regs.rx);
  		dev->regs.rx = NULL;
  		iounmap(dev->base);
  		dev->base = NULL;
  		return 0;
  	}
  	dev->scsi_host_ptr->base = pci_resource_start(dev->pdev, 2);
  	dev->regs.rx = ioremap((u64)pci_resource_start(dev->pdev, 0) |
  	  ((u64)pci_resource_start(dev->pdev, 1) << 32),
  	  sizeof(struct rx_registers) - sizeof(struct rx_inbound));
  	dev->base = NULL;
  	if (dev->regs.rx == NULL)
  		return -1;
  	dev->base = ioremap(dev->scsi_host_ptr->base, size);
  	if (dev->base == NULL) {
  		iounmap(dev->regs.rx);
  		dev->regs.rx = NULL;
  		return -1;
  	}
  	dev->IndexRegs = &((struct rx_registers __iomem *)dev->base)->IndexRegs;
  	return 0;
  }
  
  /**
   *	aac_nark_init	-	initialize an NEMER/ARK Split Bar card
   *	@dev: device to configure
   *
   */
  
  int aac_nark_init(struct aac_dev * dev)
  {
239eab195   Mark Haverkamp   [SCSI] aacraid: B...
76
77
78
79
80
81
82
83
  	/*
  	 *	Fill in the function dispatch table.
  	 */
  	dev->a_ops.adapter_ioremap = aac_nark_ioremap;
  	dev->a_ops.adapter_comm = aac_rx_select_comm;
  
  	return _aac_rx_init(dev);
  }