2 * scsicam.c - SCSI CAM support functions, use for HDIO_GETGEO, etc.
4 * Copyright 1993, 1994 Drew Eckhardt
6 * (Unix and Linux consulting and custom programming)
10 * For more information, please consult the SCSI-CAM draft.
13 #include <linux/module.h>
15 #include <linux/genhd.h>
16 #include <linux/kernel.h>
17 #include <linux/blkdev.h>
18 #include <linux/buffer_head.h>
19 #include <asm/unaligned.h>
21 #include <scsi/scsicam.h>
24 static int setsize(unsigned long capacity
, unsigned int *cyls
, unsigned int *hds
,
27 unsigned char *scsi_bios_ptable(struct block_device
*dev
)
29 unsigned char *res
= kmalloc(66, GFP_KERNEL
);
31 struct block_device
*bdev
= dev
->bd_contains
;
33 void *data
= read_dev_sector(bdev
, 0, §
);
35 memcpy(res
, data
+ 0x1be, 66);
44 EXPORT_SYMBOL(scsi_bios_ptable
);
47 * Function : int scsicam_bios_param (struct block_device *bdev, ector_t capacity, int *ip)
49 * Purpose : to determine the BIOS mapping used for a drive in a
50 * SCSI-CAM system, storing the results in ip as required
51 * by the HDIO_GETGEO ioctl().
53 * Returns : -1 on failure, 0 on success.
57 int scsicam_bios_param(struct block_device
*bdev
, sector_t capacity
, int *ip
)
62 p
= scsi_bios_ptable(bdev
);
66 /* try to infer mapping from partition table */
67 ret
= scsi_partsize(p
, (unsigned long)capacity
, (unsigned int *)ip
+ 2,
68 (unsigned int *)ip
+ 0, (unsigned int *)ip
+ 1);
72 /* pick some standard mapping with at most 1024 cylinders,
73 and at most 62 sectors per track - this works up to
75 ret
= setsize((unsigned long)capacity
, (unsigned int *)ip
+ 2,
76 (unsigned int *)ip
+ 0, (unsigned int *)ip
+ 1);
79 /* if something went wrong, then apparently we have to return
80 a geometry with more than 1024 cylinders */
81 if (ret
|| ip
[0] > 255 || ip
[1] > 63) {
82 if ((capacity
>> 11) > 65534) {
90 if (capacity
> 65535*63*255)
93 ip
[2] = (unsigned long)capacity
/ (ip
[0] * ip
[1]);
98 EXPORT_SYMBOL(scsicam_bios_param
);
101 * Function : static int scsi_partsize(unsigned char *buf, unsigned long
102 * capacity,unsigned int *cyls, unsigned int *hds, unsigned int *secs);
104 * Purpose : to determine the BIOS mapping used to create the partition
105 * table, storing the results in *cyls, *hds, and *secs
107 * Returns : -1 on failure, 0 on success.
111 int scsi_partsize(unsigned char *buf
, unsigned long capacity
,
112 unsigned int *cyls
, unsigned int *hds
, unsigned int *secs
)
114 struct partition
*p
= (struct partition
*)buf
, *largest
= NULL
;
116 int cyl
, ext_cyl
, end_head
, end_cyl
, end_sector
;
117 unsigned int logical_end
, physical_end
, ext_physical_end
;
120 if (*(unsigned short *) (buf
+ 64) == 0xAA55) {
121 for (largest_cyl
= -1, i
= 0; i
< 4; ++i
, ++p
) {
125 printk("scsicam_bios_param : partition %d has system \n",
128 cyl
= p
->cyl
+ ((p
->sector
& 0xc0) << 2);
129 if (cyl
> largest_cyl
) {
136 end_cyl
= largest
->end_cyl
+ ((largest
->end_sector
& 0xc0) << 2);
137 end_head
= largest
->end_head
;
138 end_sector
= largest
->end_sector
& 0x3f;
140 if (end_head
+ 1 == 0 || end_sector
== 0)
144 printk("scsicam_bios_param : end at h = %d, c = %d, s = %d\n",
145 end_head
, end_cyl
, end_sector
);
148 physical_end
= end_cyl
* (end_head
+ 1) * end_sector
+
149 end_head
* end_sector
+ end_sector
;
151 /* This is the actual _sector_ number at the end */
152 logical_end
= get_unaligned(&largest
->start_sect
)
153 + get_unaligned(&largest
->nr_sects
);
155 /* This is for >1023 cylinders */
156 ext_cyl
= (logical_end
- (end_head
* end_sector
+ end_sector
))
157 / (end_head
+ 1) / end_sector
;
158 ext_physical_end
= ext_cyl
* (end_head
+ 1) * end_sector
+
159 end_head
* end_sector
+ end_sector
;
162 printk("scsicam_bios_param : logical_end=%d physical_end=%d ext_physical_end=%d ext_cyl=%d\n"
163 ,logical_end
, physical_end
, ext_physical_end
, ext_cyl
);
166 if ((logical_end
== physical_end
) ||
167 (end_cyl
== 1023 && ext_physical_end
== logical_end
)) {
170 *cyls
= capacity
/ ((end_head
+ 1) * end_sector
);
174 printk("scsicam_bios_param : logical (%u) != physical (%u)\n",
175 logical_end
, physical_end
);
180 EXPORT_SYMBOL(scsi_partsize
);
183 * Function : static int setsize(unsigned long capacity,unsigned int *cyls,
184 * unsigned int *hds, unsigned int *secs);
186 * Purpose : to determine a near-optimal int 0x13 mapping for a
187 * SCSI disk in terms of lost space of size capacity, storing
188 * the results in *cyls, *hds, and *secs.
190 * Returns : -1 on failure, 0 on success.
200 * Information technology -
201 * SCSI-2 Common access method
202 * transport and SCSI interface module
206 * setsize() converts a read capacity value to int 13h
207 * head-cylinder-sector requirements. It minimizes the value for
208 * number of heads and maximizes the number of cylinders. This
209 * will support rather large disks before the number of heads
210 * will not fit in 4 bits (or 6 bits). This algorithm also
211 * minimizes the number of sectors that will be unused at the end
212 * of the disk while allowing for very large disks to be
213 * accommodated. This algorithm does not use physical geometry.
216 static int setsize(unsigned long capacity
, unsigned int *cyls
, unsigned int *hds
,
220 unsigned long heads
, sectors
, cylinders
, temp
;
222 cylinders
= 1024L; /* Set number of cylinders to max */
223 sectors
= 62L; /* Maximize sectors per track */
225 temp
= cylinders
* sectors
; /* Compute divisor for heads */
226 heads
= capacity
/ temp
; /* Compute value for number of heads */
227 if (capacity
% temp
) { /* If no remainder, done! */
228 heads
++; /* Else, increment number of heads */
229 temp
= cylinders
* heads
; /* Compute divisor for sectors */
230 sectors
= capacity
/ temp
; /* Compute value for sectors per
232 if (capacity
% temp
) { /* If no remainder, done! */
233 sectors
++; /* Else, increment number of sectors */
234 temp
= heads
* sectors
; /* Compute divisor for cylinders */
235 cylinders
= capacity
/ temp
; /* Compute number of cylinders */
239 rv
= (unsigned) -1; /* Give error if 0 cylinders */
241 *cyls
= (unsigned int) cylinders
; /* Stuff return values */
242 *secs
= (unsigned int) sectors
;
243 *hds
= (unsigned int) heads
;