2 * File...........: linux/fs/partitions/ibm.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Volker Sameske <sameske@de.ibm.com>
5 * Bugreports.to..: <Linux390@de.ibm.com>
6 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999,2000
9 #include <linux/config.h>
10 #include <linux/buffer_head.h>
11 #include <linux/hdreg.h>
12 #include <linux/slab.h>
14 #include <asm/ebcdic.h>
15 #include <asm/uaccess.h>
22 * compute the block number from a
23 * cyl-cyl-head-head structure
26 cchh2blk (struct vtoc_cchh
*ptr
, struct hd_geometry
*geo
) {
27 return ptr
->cc
* geo
->heads
* geo
->sectors
+
28 ptr
->hh
* geo
->sectors
;
32 * compute the block number from a
33 * cyl-cyl-head-head-block structure
36 cchhb2blk (struct vtoc_cchhb
*ptr
, struct hd_geometry
*geo
) {
37 return ptr
->cc
* geo
->heads
* geo
->sectors
+
38 ptr
->hh
* geo
->sectors
+
45 ibm_partition(struct parsed_partitions
*state
, struct block_device
*bdev
)
47 int blocksize
, offset
, size
;
49 dasd_information_t
*info
;
50 struct hd_geometry
*geo
;
54 struct vtoc_volume_label vol
;
55 struct vtoc_cms_label cms
;
60 blocksize
= bdev_hardsect_size(bdev
);
63 i_size
= i_size_read(bdev
->bd_inode
);
67 if ((info
= kmalloc(sizeof(dasd_information_t
), GFP_KERNEL
)) == NULL
)
69 if ((geo
= kmalloc(sizeof(struct hd_geometry
), GFP_KERNEL
)) == NULL
)
71 if ((label
= kmalloc(sizeof(union label_t
), GFP_KERNEL
)) == NULL
)
74 if (ioctl_by_bdev(bdev
, BIODASDINFO
, (unsigned long)info
) != 0 ||
75 ioctl_by_bdev(bdev
, HDIO_GETGEO
, (unsigned long)geo
) != 0)
79 * Get volume label, extract name and type.
81 data
= read_dev_sector(bdev
, info
->label_block
*(blocksize
/512), §
);
85 strncpy (type
, data
, 4);
86 if ((!info
->FBA_layout
) && (!strcmp(info
->type
, "ECKD")))
87 strncpy(name
, data
+ 8, 6);
89 strncpy(name
, data
+ 4, 6);
90 memcpy(label
, data
, sizeof(union label_t
));
97 * Three different types: CMS1, VOL1 and LNX1/unlabeled
99 if (strncmp(type
, "CMS1", 4) == 0) {
101 * VM style CMS1 labeled disk
103 if (label
->cms
.disk_offset
!= 0) {
104 printk("CMS1/%8s(MDSK):", name
);
105 /* disk is reserved minidisk */
106 blocksize
= label
->cms
.block_size
;
107 offset
= label
->cms
.disk_offset
;
108 size
= (label
->cms
.block_count
- 1) * (blocksize
>> 9);
110 printk("CMS1/%8s:", name
);
111 offset
= (info
->label_block
+ 1);
114 put_partition(state
, 1, offset
*(blocksize
>> 9),
115 size
-offset
*(blocksize
>> 9));
116 } else if ((strncmp(type
, "VOL1", 4) == 0) &&
117 (!info
->FBA_layout
) && (!strcmp(info
->type
, "ECKD"))) {
119 * New style VOL1 labeled disk
124 printk("VOL1/%8s:", name
);
126 /* get block number and read then go through format1 labels */
127 blk
= cchhb2blk(&label
->vol
.vtoc
, geo
) + 1;
129 while ((data
= read_dev_sector(bdev
, blk
*(blocksize
/512),
131 struct vtoc_format1_label f1
;
133 memcpy(&f1
, data
, sizeof(struct vtoc_format1_label
));
134 put_dev_sector(sect
);
136 /* skip FMT4 / FMT5 / FMT7 labels */
137 if (f1
.DS1FMTID
== _ascebc
['4']
138 || f1
.DS1FMTID
== _ascebc
['5']
139 || f1
.DS1FMTID
== _ascebc
['7']) {
144 /* only FMT1 valid at this point */
145 if (f1
.DS1FMTID
!= _ascebc
['1'])
148 /* OK, we got valid partition data */
149 offset
= cchh2blk(&f1
.DS1EXT1
.llimit
, geo
);
150 size
= cchh2blk(&f1
.DS1EXT1
.ulimit
, geo
) -
151 offset
+ geo
->sectors
;
152 if (counter
>= state
->limit
)
154 put_partition(state
, counter
+ 1,
155 offset
* (blocksize
>> 9),
156 size
* (blocksize
>> 9));
162 * Old style LNX1 or unlabeled disk
164 if (strncmp(type
, "LNX1", 4) == 0)
165 printk ("LNX1/%8s:", name
);
167 printk("(nonl)/%8s:", name
);
168 offset
= (info
->label_block
+ 1);
170 put_partition(state
, 1, offset
*(blocksize
>> 9),
171 size
-offset
*(blocksize
>> 9));