block: partitions: add rockchip partition support
[firefly-linux-kernel-4.4.55.git] / block / partitions / check.c
1 /*
2  *  fs/partitions/check.c
3  *
4  *  Code extracted from drivers/block/genhd.c
5  *  Copyright (C) 1991-1998  Linus Torvalds
6  *  Re-organised Feb 1998 Russell King
7  *
8  *  We now have independent partition support from the
9  *  block drivers, which allows all the partition code to
10  *  be grouped in one location, and it to be mostly self
11  *  contained.
12  *
13  *  Added needed MAJORS for new pairs, {hdi,hdj}, {hdk,hdl}
14  */
15
16 #include <linux/slab.h>
17 #include <linux/vmalloc.h>
18 #include <linux/ctype.h>
19 #include <linux/genhd.h>
20
21 #include "check.h"
22 #include "acorn.h"
23 #include "amiga.h"
24 #include "atari.h"
25 #include "ldm.h"
26 #include "mac.h"
27 #include "msdos.h"
28 #include "osf.h"
29 #include "sgi.h"
30 #include "sun.h"
31 #include "ibm.h"
32 #include "ultrix.h"
33 #include "efi.h"
34 #include "karma.h"
35 #include "sysv68.h"
36 #include "rk.h"
37
38 int warn_no_part = 1; /*This is ugly: should make genhd removable media aware*/
39
40 static int (*check_part[])(struct parsed_partitions *) = {
41         /*
42          * Probe partition formats with tables at disk address 0
43          * that also have an ADFS boot block at 0xdc0.
44          */
45 #ifdef CONFIG_ACORN_PARTITION_ICS
46         adfspart_check_ICS,
47 #endif
48 #ifdef CONFIG_ACORN_PARTITION_POWERTEC
49         adfspart_check_POWERTEC,
50 #endif
51 #ifdef CONFIG_ACORN_PARTITION_EESOX
52         adfspart_check_EESOX,
53 #endif
54
55         /*
56          * Now move on to formats that only have partition info at
57          * disk address 0xdc0.  Since these may also have stale
58          * PC/BIOS partition tables, they need to come before
59          * the msdos entry.
60          */
61 #ifdef CONFIG_ACORN_PARTITION_CUMANA
62         adfspart_check_CUMANA,
63 #endif
64 #ifdef CONFIG_ACORN_PARTITION_ADFS
65         adfspart_check_ADFS,
66 #endif
67
68 #ifdef CONFIG_EFI_PARTITION
69         efi_partition,          /* this must come before msdos */
70 #endif
71 #ifdef CONFIG_SGI_PARTITION
72         sgi_partition,
73 #endif
74 #ifdef CONFIG_LDM_PARTITION
75         ldm_partition,          /* this must come before msdos */
76 #endif
77 #ifdef CONFIG_MSDOS_PARTITION
78         msdos_partition,
79 #endif
80 #ifdef CONFIG_OSF_PARTITION
81         osf_partition,
82 #endif
83 #ifdef CONFIG_SUN_PARTITION
84         sun_partition,
85 #endif
86 #ifdef CONFIG_AMIGA_PARTITION
87         amiga_partition,
88 #endif
89 #ifdef CONFIG_ATARI_PARTITION
90         atari_partition,
91 #endif
92 #ifdef CONFIG_MAC_PARTITION
93         mac_partition,
94 #endif
95 #ifdef CONFIG_ULTRIX_PARTITION
96         ultrix_partition,
97 #endif
98 #ifdef CONFIG_IBM_PARTITION
99         ibm_partition,
100 #endif
101 #ifdef CONFIG_KARMA_PARTITION
102         karma_partition,
103 #endif
104 #ifdef CONFIG_SYSV68_PARTITION
105         sysv68_partition,
106 #endif
107 #ifdef CONFIG_RK_PARTITION
108         rkpart_partition,
109 #endif
110
111         NULL
112 };
113
114 static struct parsed_partitions *allocate_partitions(struct gendisk *hd)
115 {
116         struct parsed_partitions *state;
117         int nr;
118
119         state = kzalloc(sizeof(*state), GFP_KERNEL);
120         if (!state)
121                 return NULL;
122
123         nr = disk_max_parts(hd);
124         state->parts = vzalloc(nr * sizeof(state->parts[0]));
125         if (!state->parts) {
126                 kfree(state);
127                 return NULL;
128         }
129
130         state->limit = nr;
131
132         return state;
133 }
134
135 void free_partitions(struct parsed_partitions *state)
136 {
137         vfree(state->parts);
138         kfree(state);
139 }
140
141 struct parsed_partitions *
142 check_partition(struct gendisk *hd, struct block_device *bdev)
143 {
144         struct parsed_partitions *state;
145         int i, res, err;
146
147         state = allocate_partitions(hd);
148         if (!state)
149                 return NULL;
150         state->pp_buf = (char *)__get_free_page(GFP_KERNEL);
151         if (!state->pp_buf) {
152                 free_partitions(state);
153                 return NULL;
154         }
155         state->pp_buf[0] = '\0';
156
157         state->bdev = bdev;
158         disk_name(hd, 0, state->name);
159         snprintf(state->pp_buf, PAGE_SIZE, " %s:", state->name);
160         if (isdigit(state->name[strlen(state->name)-1]))
161                 sprintf(state->name, "p");
162
163         i = res = err = 0;
164
165         /* Rockchip partition table ONLY used by eMMC disk */
166         #ifdef CONFIG_RK_PARTITION
167         if ((179 == MAJOR(bdev->bd_dev) && (1 == hd->emmc_disk)))
168                 i = sizeof(check_part) / sizeof(struct parsed_partitions *) - 2;
169         #endif
170
171         while (!res && check_part[i]) {
172                 memset(state->parts, 0, state->limit * sizeof(state->parts[0]));
173                 res = check_part[i++](state);
174                 if (res < 0) {
175                         /* We have hit an I/O error which we don't report now.
176                         * But record it, and let the others do their job.
177                         */
178                         err = res;
179                         res = 0;
180                 }
181
182         }
183         if (res > 0) {
184                 printk(KERN_INFO "%s", state->pp_buf);
185
186                 free_page((unsigned long)state->pp_buf);
187                 return state;
188         }
189         if (state->access_beyond_eod)
190                 err = -ENOSPC;
191         if (err)
192         /* The partition is unrecognized. So report I/O errors if there were any */
193                 res = err;
194         if (!res)
195                 strlcat(state->pp_buf, " unknown partition table\n", PAGE_SIZE);
196         else if (warn_no_part)
197                 strlcat(state->pp_buf, " unable to read partition table\n", PAGE_SIZE);
198
199         printk(KERN_INFO "%s", state->pp_buf);
200
201         free_page((unsigned long)state->pp_buf);
202         free_partitions(state);
203         return ERR_PTR(res);
204 }