License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[sfrench/cifs-2.6.git] / include / linux / mtd / pfow.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Primary function overlay window definitions
3  * and service functions used by LPDDR chips
4  */
5 #ifndef __LINUX_MTD_PFOW_H
6 #define __LINUX_MTD_PFOW_H
7
8 #include <linux/mtd/qinfo.h>
9
10 /* PFOW registers addressing */
11 /* Address of symbol "P" */
12 #define PFOW_QUERY_STRING_P                     0x0000
13 /* Address of symbol "F" */
14 #define PFOW_QUERY_STRING_F                     0x0002
15 /* Address of symbol "O" */
16 #define PFOW_QUERY_STRING_O                     0x0004
17 /* Address of symbol "W" */
18 #define PFOW_QUERY_STRING_W                     0x0006
19 /* Identification info for LPDDR chip */
20 #define PFOW_MANUFACTURER_ID                    0x0020
21 #define PFOW_DEVICE_ID                          0x0022
22 /* Address in PFOW where prog buffer can can be found */
23 #define PFOW_PROGRAM_BUFFER_OFFSET              0x0040
24 /* Size of program buffer in words */
25 #define PFOW_PROGRAM_BUFFER_SIZE                0x0042
26 /* Address command code register */
27 #define PFOW_COMMAND_CODE                       0x0080
28 /* command data register */
29 #define PFOW_COMMAND_DATA                       0x0084
30 /* command address register lower address bits */
31 #define PFOW_COMMAND_ADDRESS_L                  0x0088
32 /* command address register upper address bits */
33 #define PFOW_COMMAND_ADDRESS_H                  0x008a
34 /* number of bytes to be proggrammed lower address bits */
35 #define PFOW_DATA_COUNT_L                       0x0090
36 /* number of bytes to be proggrammed higher address bits */
37 #define PFOW_DATA_COUNT_H                       0x0092
38 /* command execution register, the only possible value is 0x01 */
39 #define PFOW_COMMAND_EXECUTE                    0x00c0
40 /* 0x01 should be written at this address to clear buffer */
41 #define PFOW_CLEAR_PROGRAM_BUFFER               0x00c4
42 /* device program/erase suspend register */
43 #define PFOW_PROGRAM_ERASE_SUSPEND              0x00c8
44 /* device status register */
45 #define PFOW_DSR                                0x00cc
46
47 /* LPDDR memory device command codes */
48 /* They are possible values of PFOW command code register */
49 #define LPDDR_WORD_PROGRAM              0x0041
50 #define LPDDR_BUFF_PROGRAM              0x00E9
51 #define LPDDR_BLOCK_ERASE               0x0020
52 #define LPDDR_LOCK_BLOCK                0x0061
53 #define LPDDR_UNLOCK_BLOCK              0x0062
54 #define LPDDR_READ_BLOCK_LOCK_STATUS    0x0065
55 #define LPDDR_INFO_QUERY                0x0098
56 #define LPDDR_READ_OTP                  0x0097
57 #define LPDDR_PROG_OTP                  0x00C0
58 #define LPDDR_RESUME                    0x00D0
59
60 /* Defines possible value of PFOW command execution register */
61 #define LPDDR_START_EXECUTION                   0x0001
62
63 /* Defines possible value of PFOW program/erase suspend register */
64 #define LPDDR_SUSPEND                           0x0001
65
66 /* Possible values of PFOW device status register */
67 /* access R - read; RC read & clearable */
68 #define DSR_DPS                 (1<<1) /* RC; device protect status
69                                         * 0 - not protected 1 - locked */
70 #define DSR_PSS                 (1<<2) /* R; program suspend status;
71                                         * 0-prog in progress/completed,
72                                         * 1- prog suspended */
73 #define DSR_VPPS                (1<<3) /* RC; 0-Vpp OK, * 1-Vpp low */
74 #define DSR_PROGRAM_STATUS      (1<<4) /* RC; 0-successful, 1-error */
75 #define DSR_ERASE_STATUS        (1<<5) /* RC; erase or blank check status;
76                                         * 0-success erase/blank check,
77                                         * 1 blank check error */
78 #define DSR_ESS                 (1<<6) /* R; erase suspend status;
79                                         * 0-erase in progress/complete,
80                                         * 1 erase suspended */
81 #define DSR_READY_STATUS        (1<<7) /* R; Device status
82                                         * 0-busy,
83                                         * 1-ready */
84 #define DSR_RPS                 (0x3<<8) /* RC;  region program status
85                                         * 00 - Success,
86                                         * 01-re-program attempt in region with
87                                         * object mode data,
88                                         * 10-object mode program w attempt in
89                                         * region with control mode data
90                                         * 11-attempt to program invalid half
91                                         * with 0x41 command */
92 #define DSR_AOS                 (1<<12) /* RC; 1- AO related failure */
93 #define DSR_AVAILABLE           (1<<15) /* R; Device availbility
94                                         * 1 - Device available
95                                         * 0 - not available */
96
97 /* The superset of all possible error bits in DSR */
98 #define DSR_ERR                 0x133A
99
100 static inline void send_pfow_command(struct map_info *map,
101                                 unsigned long cmd_code, unsigned long adr,
102                                 unsigned long len, map_word *datum)
103 {
104         int bits_per_chip = map_bankwidth(map) * 8;
105
106         map_write(map, CMD(cmd_code), map->pfow_base + PFOW_COMMAND_CODE);
107         map_write(map, CMD(adr & ((1<<bits_per_chip) - 1)),
108                                 map->pfow_base + PFOW_COMMAND_ADDRESS_L);
109         map_write(map, CMD(adr>>bits_per_chip),
110                                 map->pfow_base + PFOW_COMMAND_ADDRESS_H);
111         if (len) {
112                 map_write(map, CMD(len & ((1<<bits_per_chip) - 1)),
113                                         map->pfow_base + PFOW_DATA_COUNT_L);
114                 map_write(map, CMD(len>>bits_per_chip),
115                                         map->pfow_base + PFOW_DATA_COUNT_H);
116         }
117         if (datum)
118                 map_write(map, *datum, map->pfow_base + PFOW_COMMAND_DATA);
119
120         /* Command execution start */
121         map_write(map, CMD(LPDDR_START_EXECUTION),
122                         map->pfow_base + PFOW_COMMAND_EXECUTE);
123 }
124
125 static inline void print_drs_error(unsigned dsr)
126 {
127         int prog_status = (dsr & DSR_RPS) >> 8;
128
129         if (!(dsr & DSR_AVAILABLE))
130                 printk(KERN_NOTICE"DSR.15: (0) Device not Available\n");
131         if (prog_status & 0x03)
132                 printk(KERN_NOTICE"DSR.9,8: (11) Attempt to program invalid "
133                                                 "half with 41h command\n");
134         else if (prog_status & 0x02)
135                 printk(KERN_NOTICE"DSR.9,8: (10) Object Mode Program attempt "
136                                         "in region with Control Mode data\n");
137         else if (prog_status &  0x01)
138                 printk(KERN_NOTICE"DSR.9,8: (01) Program attempt in region "
139                                                 "with Object Mode data\n");
140         if (!(dsr & DSR_READY_STATUS))
141                 printk(KERN_NOTICE"DSR.7: (0) Device is Busy\n");
142         if (dsr & DSR_ESS)
143                 printk(KERN_NOTICE"DSR.6: (1) Erase Suspended\n");
144         if (dsr & DSR_ERASE_STATUS)
145                 printk(KERN_NOTICE"DSR.5: (1) Erase/Blank check error\n");
146         if (dsr & DSR_PROGRAM_STATUS)
147                 printk(KERN_NOTICE"DSR.4: (1) Program Error\n");
148         if (dsr & DSR_VPPS)
149                 printk(KERN_NOTICE"DSR.3: (1) Vpp low detect, operation "
150                                         "aborted\n");
151         if (dsr & DSR_PSS)
152                 printk(KERN_NOTICE"DSR.2: (1) Program suspended\n");
153         if (dsr & DSR_DPS)
154                 printk(KERN_NOTICE"DSR.1: (1) Aborted Erase/Program attempt "
155                                         "on locked block\n");
156 }
157 #endif /* __LINUX_MTD_PFOW_H */