1 // SPDX-License-Identifier: GPL-2.0-only
3 * DDR PHY Front End (DPFE) driver for Broadcom set top box SoCs
5 * Copyright (c) 2017 Broadcom
9 * This driver provides access to the DPFE interface of Broadcom STB SoCs.
10 * The firmware running on the DCPU inside the DDR PHY can provide current
11 * information about the system's RAM, for instance the DRAM refresh rate.
12 * This can be used as an indirect indicator for the DRAM's temperature.
13 * Slower refresh rate means cooler RAM, higher refresh rate means hotter
16 * Throughout the driver, we use readl_relaxed() and writel_relaxed(), which
17 * already contain the appropriate le32_to_cpu()/cpu_to_le32() calls.
19 * Note regarding the loading of the firmware image: we use be32_to_cpu()
20 * and le_32_to_cpu(), so we can support the following four cases:
21 * - LE kernel + LE firmware image (the most common case)
22 * - LE kernel + BE firmware image
23 * - BE kernel + LE firmware image
24 * - BE kernel + BE firmware image
26 * The DPCU always runs in big endian mode. The firmware image, however, can
27 * be in either format. Also, communication between host CPU and DCPU is
28 * always in little endian.
31 #include <linux/delay.h>
32 #include <linux/firmware.h>
34 #include <linux/module.h>
35 #include <linux/of_address.h>
36 #include <linux/of_device.h>
37 #include <linux/platform_device.h>
39 #define DRVNAME "brcmstb-dpfe"
41 /* DCPU register offsets */
42 #define REG_DCPU_RESET 0x0
43 #define REG_TO_DCPU_MBOX 0x10
44 #define REG_TO_HOST_MBOX 0x14
46 /* Macros to process offsets returned by the DCPU */
47 #define DRAM_MSG_ADDR_OFFSET 0x0
48 #define DRAM_MSG_TYPE_OFFSET 0x1c
49 #define DRAM_MSG_ADDR_MASK ((1UL << DRAM_MSG_TYPE_OFFSET) - 1)
50 #define DRAM_MSG_TYPE_MASK ((1UL << \
51 (BITS_PER_LONG - DRAM_MSG_TYPE_OFFSET)) - 1)
54 #define DCPU_MSG_RAM_START 0x100
55 #define DCPU_MSG_RAM(x) (DCPU_MSG_RAM_START + (x) * sizeof(u32))
57 /* DRAM Info Offsets & Masks */
58 #define DRAM_INFO_INTERVAL 0x0
59 #define DRAM_INFO_MR4 0x4
60 #define DRAM_INFO_ERROR 0x8
61 #define DRAM_INFO_MR4_MASK 0xff
62 #define DRAM_INFO_MR4_SHIFT 24 /* We need to look at byte 3 */
64 /* DRAM MR4 Offsets & Masks */
65 #define DRAM_MR4_REFRESH 0x0 /* Refresh rate */
66 #define DRAM_MR4_SR_ABORT 0x3 /* Self Refresh Abort */
67 #define DRAM_MR4_PPRE 0x4 /* Post-package repair entry/exit */
68 #define DRAM_MR4_TH_OFFS 0x5 /* Thermal Offset; vendor specific */
69 #define DRAM_MR4_TUF 0x7 /* Temperature Update Flag */
71 #define DRAM_MR4_REFRESH_MASK 0x7
72 #define DRAM_MR4_SR_ABORT_MASK 0x1
73 #define DRAM_MR4_PPRE_MASK 0x1
74 #define DRAM_MR4_TH_OFFS_MASK 0x3
75 #define DRAM_MR4_TUF_MASK 0x1
77 /* DRAM Vendor Offsets & Masks (API v2) */
78 #define DRAM_VENDOR_MR5 0x0
79 #define DRAM_VENDOR_MR6 0x4
80 #define DRAM_VENDOR_MR7 0x8
81 #define DRAM_VENDOR_MR8 0xc
82 #define DRAM_VENDOR_ERROR 0x10
83 #define DRAM_VENDOR_MASK 0xff
84 #define DRAM_VENDOR_SHIFT 24 /* We need to look at byte 3 */
86 /* DRAM Information Offsets & Masks (API v3) */
87 #define DRAM_DDR_INFO_MR4 0x0
88 #define DRAM_DDR_INFO_MR5 0x4
89 #define DRAM_DDR_INFO_MR6 0x8
90 #define DRAM_DDR_INFO_MR7 0xc
91 #define DRAM_DDR_INFO_MR8 0x10
92 #define DRAM_DDR_INFO_ERROR 0x14
93 #define DRAM_DDR_INFO_MASK 0xff
95 /* Reset register bits & masks */
96 #define DCPU_RESET_SHIFT 0x0
97 #define DCPU_RESET_MASK 0x1
98 #define DCPU_CLK_DISABLE_SHIFT 0x2
100 /* DCPU return codes */
101 #define DCPU_RET_ERROR_BIT BIT(31)
102 #define DCPU_RET_SUCCESS 0x1
103 #define DCPU_RET_ERR_HEADER (DCPU_RET_ERROR_BIT | BIT(0))
104 #define DCPU_RET_ERR_INVAL (DCPU_RET_ERROR_BIT | BIT(1))
105 #define DCPU_RET_ERR_CHKSUM (DCPU_RET_ERROR_BIT | BIT(2))
106 #define DCPU_RET_ERR_COMMAND (DCPU_RET_ERROR_BIT | BIT(3))
107 /* This error code is not firmware defined and only used in the driver. */
108 #define DCPU_RET_ERR_TIMEDOUT (DCPU_RET_ERROR_BIT | BIT(4))
111 #define DPFE_BE_MAGIC 0xfe1010fe
112 #define DPFE_LE_MAGIC 0xfe0101fe
115 #define ERR_INVALID_MAGIC -1
116 #define ERR_INVALID_SIZE -2
117 #define ERR_INVALID_CHKSUM -3
120 #define DPFE_MSG_TYPE_COMMAND 1
121 #define DPFE_MSG_TYPE_RESPONSE 2
123 #define DELAY_LOOP_MAX 1000
125 enum dpfe_msg_fields {
130 MSG_FIELD_MAX = 16 /* Max number of arguments */
135 DPFE_CMD_GET_REFRESH,
137 DPFE_CMD_MAX /* Last entry */
141 * Format of the binary firmware file:
145 * value: 0xfe0101fe <== little endian
146 * 0xfe1010fe <== big endian
148 * [31:16] total segments on this build
149 * [15:0] this segment sequence.
155 * last checksum ==> sum of everything
157 struct dpfe_firmware_header {
165 /* Things we only need during initialization. */
167 unsigned int dmem_len;
168 unsigned int imem_len;
173 /* API version and corresponding commands */
177 const struct attribute_group **sysfs_attrs;
178 u32 command[DPFE_CMD_MAX][MSG_FIELD_MAX];
181 /* Things we need for as long as we are active. */
182 struct brcmstb_dpfe_priv {
187 const struct dpfe_api *dpfe_api;
192 * Forward declaration of our sysfs attribute functions, so we can declare the
193 * attribute data structures early.
195 static ssize_t show_info(struct device *, struct device_attribute *, char *);
196 static ssize_t show_refresh(struct device *, struct device_attribute *, char *);
197 static ssize_t store_refresh(struct device *, struct device_attribute *,
198 const char *, size_t);
199 static ssize_t show_vendor(struct device *, struct device_attribute *, char *);
200 static ssize_t show_dram(struct device *, struct device_attribute *, char *);
203 * Declare our attributes early, so they can be referenced in the API data
204 * structure. We need to do this, because the attributes depend on the API
207 static DEVICE_ATTR(dpfe_info, 0444, show_info, NULL);
208 static DEVICE_ATTR(dpfe_refresh, 0644, show_refresh, store_refresh);
209 static DEVICE_ATTR(dpfe_vendor, 0444, show_vendor, NULL);
210 static DEVICE_ATTR(dpfe_dram, 0444, show_dram, NULL);
212 /* API v2 sysfs attributes */
213 static struct attribute *dpfe_v2_attrs[] = {
214 &dev_attr_dpfe_info.attr,
215 &dev_attr_dpfe_refresh.attr,
216 &dev_attr_dpfe_vendor.attr,
219 ATTRIBUTE_GROUPS(dpfe_v2);
221 /* API v3 sysfs attributes */
222 static struct attribute *dpfe_v3_attrs[] = {
223 &dev_attr_dpfe_info.attr,
224 &dev_attr_dpfe_dram.attr,
227 ATTRIBUTE_GROUPS(dpfe_v3);
230 * Old API v2 firmware commands, as defined in the rev 0.61 specification, we
231 * use a version set to 1 to denote that it is not compatible with the new API
234 static const struct dpfe_api dpfe_api_old_v2 = {
236 .fw_name = "dpfe.bin",
237 .sysfs_attrs = dpfe_v2_groups,
239 [DPFE_CMD_GET_INFO] = {
240 [MSG_HEADER] = DPFE_MSG_TYPE_COMMAND,
245 [DPFE_CMD_GET_REFRESH] = {
246 [MSG_HEADER] = DPFE_MSG_TYPE_COMMAND,
251 [DPFE_CMD_GET_VENDOR] = {
252 [MSG_HEADER] = DPFE_MSG_TYPE_COMMAND,
261 * API v2 firmware commands, as defined in the rev 0.8 specification, named new
264 static const struct dpfe_api dpfe_api_new_v2 = {
266 .fw_name = NULL, /* We expect the firmware to have been downloaded! */
267 .sysfs_attrs = dpfe_v2_groups,
269 [DPFE_CMD_GET_INFO] = {
270 [MSG_HEADER] = DPFE_MSG_TYPE_COMMAND,
271 [MSG_COMMAND] = 0x101,
273 [DPFE_CMD_GET_REFRESH] = {
274 [MSG_HEADER] = DPFE_MSG_TYPE_COMMAND,
275 [MSG_COMMAND] = 0x201,
277 [DPFE_CMD_GET_VENDOR] = {
278 [MSG_HEADER] = DPFE_MSG_TYPE_COMMAND,
279 [MSG_COMMAND] = 0x202,
284 /* API v3 firmware commands */
285 static const struct dpfe_api dpfe_api_v3 = {
287 .fw_name = NULL, /* We expect the firmware to have been downloaded! */
288 .sysfs_attrs = dpfe_v3_groups,
290 [DPFE_CMD_GET_INFO] = {
291 [MSG_HEADER] = DPFE_MSG_TYPE_COMMAND,
292 [MSG_COMMAND] = 0x0101,
296 [DPFE_CMD_GET_REFRESH] = {
297 [MSG_HEADER] = DPFE_MSG_TYPE_COMMAND,
298 [MSG_COMMAND] = 0x0202,
301 /* There's no GET_VENDOR command in API v3. */
305 static const char *get_error_text(unsigned int i)
307 static const char * const error_text[] = {
308 "Success", "Header code incorrect",
309 "Unknown command or argument", "Incorrect checksum",
310 "Malformed command", "Timed out", "Unknown error",
313 if (unlikely(i >= ARRAY_SIZE(error_text)))
314 i = ARRAY_SIZE(error_text) - 1;
316 return error_text[i];
319 static bool is_dcpu_enabled(struct brcmstb_dpfe_priv *priv)
323 mutex_lock(&priv->lock);
324 val = readl_relaxed(priv->regs + REG_DCPU_RESET);
325 mutex_unlock(&priv->lock);
327 return !(val & DCPU_RESET_MASK);
330 static void __disable_dcpu(struct brcmstb_dpfe_priv *priv)
334 if (!is_dcpu_enabled(priv))
337 mutex_lock(&priv->lock);
339 /* Put DCPU in reset if it's running. */
340 val = readl_relaxed(priv->regs + REG_DCPU_RESET);
341 val |= (1 << DCPU_RESET_SHIFT);
342 writel_relaxed(val, priv->regs + REG_DCPU_RESET);
344 mutex_unlock(&priv->lock);
347 static void __enable_dcpu(struct brcmstb_dpfe_priv *priv)
349 void __iomem *regs = priv->regs;
352 mutex_lock(&priv->lock);
354 /* Clear mailbox registers. */
355 writel_relaxed(0, regs + REG_TO_DCPU_MBOX);
356 writel_relaxed(0, regs + REG_TO_HOST_MBOX);
358 /* Disable DCPU clock gating */
359 val = readl_relaxed(regs + REG_DCPU_RESET);
360 val &= ~(1 << DCPU_CLK_DISABLE_SHIFT);
361 writel_relaxed(val, regs + REG_DCPU_RESET);
363 /* Take DCPU out of reset */
364 val = readl_relaxed(regs + REG_DCPU_RESET);
365 val &= ~(1 << DCPU_RESET_SHIFT);
366 writel_relaxed(val, regs + REG_DCPU_RESET);
368 mutex_unlock(&priv->lock);
371 static unsigned int get_msg_chksum(const u32 msg[], unsigned int max)
373 unsigned int sum = 0;
376 /* Don't include the last field in the checksum. */
377 for (i = 0; i < max; i++)
383 static void __iomem *get_msg_ptr(struct brcmstb_dpfe_priv *priv, u32 response,
384 char *buf, ssize_t *size)
386 unsigned int msg_type;
388 void __iomem *ptr = NULL;
390 /* There is no need to use this function for API v3 or later. */
391 if (unlikely(priv->dpfe_api->version >= 3))
394 msg_type = (response >> DRAM_MSG_TYPE_OFFSET) & DRAM_MSG_TYPE_MASK;
395 offset = (response >> DRAM_MSG_ADDR_OFFSET) & DRAM_MSG_ADDR_MASK;
398 * msg_type == 1: the offset is relative to the message RAM
399 * msg_type == 0: the offset is relative to the data RAM (this is the
400 * previous way of passing data)
401 * msg_type is anything else: there's critical hardware problem
405 ptr = priv->regs + DCPU_MSG_RAM_START + offset;
408 ptr = priv->dmem + offset;
411 dev_emerg(priv->dev, "invalid message reply from DCPU: %#x\n",
415 "FATAL: communication error with DCPU\n");
421 static void __finalize_command(struct brcmstb_dpfe_priv *priv)
423 unsigned int release_mbox;
426 * It depends on the API version which MBOX register we have to write to
427 * signal we are done.
429 release_mbox = (priv->dpfe_api->version < 2)
430 ? REG_TO_HOST_MBOX : REG_TO_DCPU_MBOX;
431 writel_relaxed(0, priv->regs + release_mbox);
434 static int __send_command(struct brcmstb_dpfe_priv *priv, unsigned int cmd,
437 const u32 *msg = priv->dpfe_api->command[cmd];
438 void __iomem *regs = priv->regs;
439 unsigned int i, chksum, chksum_idx;
443 if (cmd >= DPFE_CMD_MAX)
446 mutex_lock(&priv->lock);
448 /* Wait for DCPU to become ready */
449 for (i = 0; i < DELAY_LOOP_MAX; i++) {
450 resp = readl_relaxed(regs + REG_TO_HOST_MBOX);
456 mutex_unlock(&priv->lock);
457 return -ffs(DCPU_RET_ERR_TIMEDOUT);
460 /* Compute checksum over the message */
461 chksum_idx = msg[MSG_ARG_COUNT] + MSG_ARG_COUNT + 1;
462 chksum = get_msg_chksum(msg, chksum_idx);
464 /* Write command and arguments to message area */
465 for (i = 0; i < MSG_FIELD_MAX; i++) {
467 writel_relaxed(chksum, regs + DCPU_MSG_RAM(i));
469 writel_relaxed(msg[i], regs + DCPU_MSG_RAM(i));
472 /* Tell DCPU there is a command waiting */
473 writel_relaxed(1, regs + REG_TO_DCPU_MBOX);
475 /* Wait for DCPU to process the command */
476 for (i = 0; i < DELAY_LOOP_MAX; i++) {
477 /* Read response code */
478 resp = readl_relaxed(regs + REG_TO_HOST_MBOX);
484 if (i == DELAY_LOOP_MAX) {
485 resp = (DCPU_RET_ERR_TIMEDOUT & ~DCPU_RET_ERROR_BIT);
488 /* Read response data */
489 for (i = 0; i < MSG_FIELD_MAX; i++)
490 result[i] = readl_relaxed(regs + DCPU_MSG_RAM(i));
491 chksum_idx = result[MSG_ARG_COUNT] + MSG_ARG_COUNT + 1;
494 /* Tell DCPU we are done */
495 __finalize_command(priv);
497 mutex_unlock(&priv->lock);
502 /* Verify response */
503 chksum = get_msg_chksum(result, chksum_idx);
504 if (chksum != result[chksum_idx])
505 resp = DCPU_RET_ERR_CHKSUM;
507 if (resp != DCPU_RET_SUCCESS) {
508 resp &= ~DCPU_RET_ERROR_BIT;
515 /* Ensure that the firmware file loaded meets all the requirements. */
516 static int __verify_firmware(struct init_data *init,
517 const struct firmware *fw)
519 const struct dpfe_firmware_header *header = (void *)fw->data;
520 unsigned int dmem_size, imem_size, total_size;
521 bool is_big_endian = false;
522 const u32 *chksum_ptr;
524 if (header->magic == DPFE_BE_MAGIC)
525 is_big_endian = true;
526 else if (header->magic != DPFE_LE_MAGIC)
527 return ERR_INVALID_MAGIC;
530 dmem_size = be32_to_cpu(header->dmem_size);
531 imem_size = be32_to_cpu(header->imem_size);
533 dmem_size = le32_to_cpu(header->dmem_size);
534 imem_size = le32_to_cpu(header->imem_size);
537 /* Data and instruction sections are 32 bit words. */
538 if ((dmem_size % sizeof(u32)) != 0 || (imem_size % sizeof(u32)) != 0)
539 return ERR_INVALID_SIZE;
542 * The header + the data section + the instruction section + the
543 * checksum must be equal to the total firmware size.
545 total_size = dmem_size + imem_size + sizeof(*header) +
547 if (total_size != fw->size)
548 return ERR_INVALID_SIZE;
550 /* The checksum comes at the very end. */
551 chksum_ptr = (void *)fw->data + sizeof(*header) + dmem_size + imem_size;
553 init->is_big_endian = is_big_endian;
554 init->dmem_len = dmem_size;
555 init->imem_len = imem_size;
556 init->chksum = (is_big_endian)
557 ? be32_to_cpu(*chksum_ptr) : le32_to_cpu(*chksum_ptr);
562 /* Verify checksum by reading back the firmware from co-processor RAM. */
563 static int __verify_fw_checksum(struct init_data *init,
564 struct brcmstb_dpfe_priv *priv,
565 const struct dpfe_firmware_header *header,
568 u32 magic, sequence, version, sum;
569 u32 __iomem *dmem = priv->dmem;
570 u32 __iomem *imem = priv->imem;
573 if (init->is_big_endian) {
574 magic = be32_to_cpu(header->magic);
575 sequence = be32_to_cpu(header->sequence);
576 version = be32_to_cpu(header->version);
578 magic = le32_to_cpu(header->magic);
579 sequence = le32_to_cpu(header->sequence);
580 version = le32_to_cpu(header->version);
583 sum = magic + sequence + version + init->dmem_len + init->imem_len;
585 for (i = 0; i < init->dmem_len / sizeof(u32); i++)
586 sum += readl_relaxed(dmem + i);
588 for (i = 0; i < init->imem_len / sizeof(u32); i++)
589 sum += readl_relaxed(imem + i);
591 return (sum == checksum) ? 0 : -1;
594 static int __write_firmware(u32 __iomem *mem, const u32 *fw,
595 unsigned int size, bool is_big_endian)
599 /* Convert size to 32-bit words. */
602 /* It is recommended to clear the firmware area first. */
603 for (i = 0; i < size; i++)
604 writel_relaxed(0, mem + i);
608 for (i = 0; i < size; i++)
609 writel_relaxed(be32_to_cpu(fw[i]), mem + i);
611 for (i = 0; i < size; i++)
612 writel_relaxed(le32_to_cpu(fw[i]), mem + i);
618 static int brcmstb_dpfe_download_firmware(struct brcmstb_dpfe_priv *priv)
620 const struct dpfe_firmware_header *header;
621 unsigned int dmem_size, imem_size;
622 struct device *dev = priv->dev;
623 bool is_big_endian = false;
624 const struct firmware *fw;
625 const u32 *dmem, *imem;
626 struct init_data init;
631 * Skip downloading the firmware if the DCPU is already running and
632 * responding to commands.
634 if (is_dcpu_enabled(priv)) {
635 u32 response[MSG_FIELD_MAX];
637 ret = __send_command(priv, DPFE_CMD_GET_INFO, response);
643 * If the firmware filename is NULL it means the boot firmware has to
644 * download the DCPU firmware for us. If that didn't work, we have to
645 * bail, since downloading it ourselves wouldn't work either.
647 if (!priv->dpfe_api->fw_name)
650 ret = firmware_request_nowarn(&fw, priv->dpfe_api->fw_name, dev);
652 * Defer the firmware download if the firmware file couldn't be found.
653 * The root file system may not be available yet.
656 return (ret == -ENOENT) ? -EPROBE_DEFER : ret;
658 ret = __verify_firmware(&init, fw);
664 __disable_dcpu(priv);
666 is_big_endian = init.is_big_endian;
667 dmem_size = init.dmem_len;
668 imem_size = init.imem_len;
670 /* At the beginning of the firmware blob is a header. */
671 header = (struct dpfe_firmware_header *)fw->data;
672 /* Void pointer to the beginning of the actual firmware. */
673 fw_blob = fw->data + sizeof(*header);
674 /* IMEM comes right after the header. */
676 /* DMEM follows after IMEM. */
677 dmem = fw_blob + imem_size;
679 ret = __write_firmware(priv->dmem, dmem, dmem_size, is_big_endian);
682 ret = __write_firmware(priv->imem, imem, imem_size, is_big_endian);
686 ret = __verify_fw_checksum(&init, priv, header, init.chksum);
693 release_firmware(fw);
697 static ssize_t generic_show(unsigned int command, u32 response[],
698 struct brcmstb_dpfe_priv *priv, char *buf)
703 return sprintf(buf, "ERROR: driver private data not set\n");
705 ret = __send_command(priv, command, response);
707 return sprintf(buf, "ERROR: %s\n", get_error_text(-ret));
712 static ssize_t show_info(struct device *dev, struct device_attribute *devattr,
715 u32 response[MSG_FIELD_MAX];
716 struct brcmstb_dpfe_priv *priv;
720 priv = dev_get_drvdata(dev);
721 ret = generic_show(DPFE_CMD_GET_INFO, response, priv, buf);
725 info = response[MSG_ARG0];
727 return sprintf(buf, "%u.%u.%u.%u\n",
734 static ssize_t show_refresh(struct device *dev,
735 struct device_attribute *devattr, char *buf)
737 u32 response[MSG_FIELD_MAX];
739 struct brcmstb_dpfe_priv *priv;
740 u8 refresh, sr_abort, ppre, thermal_offs, tuf;
744 priv = dev_get_drvdata(dev);
745 ret = generic_show(DPFE_CMD_GET_REFRESH, response, priv, buf);
749 info = get_msg_ptr(priv, response[MSG_ARG0], buf, &ret);
753 mr4 = (readl_relaxed(info + DRAM_INFO_MR4) >> DRAM_INFO_MR4_SHIFT) &
756 refresh = (mr4 >> DRAM_MR4_REFRESH) & DRAM_MR4_REFRESH_MASK;
757 sr_abort = (mr4 >> DRAM_MR4_SR_ABORT) & DRAM_MR4_SR_ABORT_MASK;
758 ppre = (mr4 >> DRAM_MR4_PPRE) & DRAM_MR4_PPRE_MASK;
759 thermal_offs = (mr4 >> DRAM_MR4_TH_OFFS) & DRAM_MR4_TH_OFFS_MASK;
760 tuf = (mr4 >> DRAM_MR4_TUF) & DRAM_MR4_TUF_MASK;
762 return sprintf(buf, "%#x %#x %#x %#x %#x %#x %#x\n",
763 readl_relaxed(info + DRAM_INFO_INTERVAL),
764 refresh, sr_abort, ppre, thermal_offs, tuf,
765 readl_relaxed(info + DRAM_INFO_ERROR));
768 static ssize_t store_refresh(struct device *dev, struct device_attribute *attr,
769 const char *buf, size_t count)
771 u32 response[MSG_FIELD_MAX];
772 struct brcmstb_dpfe_priv *priv;
777 if (kstrtoul(buf, 0, &val) < 0)
780 priv = dev_get_drvdata(dev);
781 ret = __send_command(priv, DPFE_CMD_GET_REFRESH, response);
785 info = get_msg_ptr(priv, response[MSG_ARG0], NULL, NULL);
789 writel_relaxed(val, info + DRAM_INFO_INTERVAL);
794 static ssize_t show_vendor(struct device *dev, struct device_attribute *devattr,
797 u32 response[MSG_FIELD_MAX];
798 struct brcmstb_dpfe_priv *priv;
801 u32 mr5, mr6, mr7, mr8, err;
803 priv = dev_get_drvdata(dev);
804 ret = generic_show(DPFE_CMD_GET_VENDOR, response, priv, buf);
808 info = get_msg_ptr(priv, response[MSG_ARG0], buf, &ret);
812 mr5 = (readl_relaxed(info + DRAM_VENDOR_MR5) >> DRAM_VENDOR_SHIFT) &
814 mr6 = (readl_relaxed(info + DRAM_VENDOR_MR6) >> DRAM_VENDOR_SHIFT) &
816 mr7 = (readl_relaxed(info + DRAM_VENDOR_MR7) >> DRAM_VENDOR_SHIFT) &
818 mr8 = (readl_relaxed(info + DRAM_VENDOR_MR8) >> DRAM_VENDOR_SHIFT) &
820 err = readl_relaxed(info + DRAM_VENDOR_ERROR) & DRAM_VENDOR_MASK;
822 return sprintf(buf, "%#x %#x %#x %#x %#x\n", mr5, mr6, mr7, mr8, err);
825 static ssize_t show_dram(struct device *dev, struct device_attribute *devattr,
828 u32 response[MSG_FIELD_MAX];
829 struct brcmstb_dpfe_priv *priv;
831 u32 mr4, mr5, mr6, mr7, mr8, err;
833 priv = dev_get_drvdata(dev);
834 ret = generic_show(DPFE_CMD_GET_REFRESH, response, priv, buf);
838 mr4 = response[MSG_ARG0 + 0] & DRAM_INFO_MR4_MASK;
839 mr5 = response[MSG_ARG0 + 1] & DRAM_DDR_INFO_MASK;
840 mr6 = response[MSG_ARG0 + 2] & DRAM_DDR_INFO_MASK;
841 mr7 = response[MSG_ARG0 + 3] & DRAM_DDR_INFO_MASK;
842 mr8 = response[MSG_ARG0 + 4] & DRAM_DDR_INFO_MASK;
843 err = response[MSG_ARG0 + 5] & DRAM_DDR_INFO_MASK;
845 return sprintf(buf, "%#x %#x %#x %#x %#x %#x\n", mr4, mr5, mr6, mr7,
849 static int brcmstb_dpfe_resume(struct platform_device *pdev)
851 struct brcmstb_dpfe_priv *priv = platform_get_drvdata(pdev);
853 return brcmstb_dpfe_download_firmware(priv);
856 static int brcmstb_dpfe_probe(struct platform_device *pdev)
858 struct device *dev = &pdev->dev;
859 struct brcmstb_dpfe_priv *priv;
862 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
868 mutex_init(&priv->lock);
869 platform_set_drvdata(pdev, priv);
871 priv->regs = devm_platform_ioremap_resource_byname(pdev, "dpfe-cpu");
872 if (IS_ERR(priv->regs)) {
873 dev_err(dev, "couldn't map DCPU registers\n");
877 priv->dmem = devm_platform_ioremap_resource_byname(pdev, "dpfe-dmem");
878 if (IS_ERR(priv->dmem)) {
879 dev_err(dev, "Couldn't map DCPU data memory\n");
883 priv->imem = devm_platform_ioremap_resource_byname(pdev, "dpfe-imem");
884 if (IS_ERR(priv->imem)) {
885 dev_err(dev, "Couldn't map DCPU instruction memory\n");
889 priv->dpfe_api = of_device_get_match_data(dev);
890 if (unlikely(!priv->dpfe_api)) {
892 * It should be impossible to end up here, but to be safe we
895 dev_err(dev, "Couldn't determine API\n");
899 ret = brcmstb_dpfe_download_firmware(priv);
901 return dev_err_probe(dev, ret, "Couldn't download firmware\n");
903 ret = sysfs_create_groups(&pdev->dev.kobj, priv->dpfe_api->sysfs_attrs);
905 dev_info(dev, "registered with API v%d.\n",
906 priv->dpfe_api->version);
911 static int brcmstb_dpfe_remove(struct platform_device *pdev)
913 struct brcmstb_dpfe_priv *priv = dev_get_drvdata(&pdev->dev);
915 sysfs_remove_groups(&pdev->dev.kobj, priv->dpfe_api->sysfs_attrs);
920 static const struct of_device_id brcmstb_dpfe_of_match[] = {
921 /* Use legacy API v2 for a select number of chips */
922 { .compatible = "brcm,bcm7268-dpfe-cpu", .data = &dpfe_api_old_v2 },
923 { .compatible = "brcm,bcm7271-dpfe-cpu", .data = &dpfe_api_old_v2 },
924 { .compatible = "brcm,bcm7278-dpfe-cpu", .data = &dpfe_api_old_v2 },
925 { .compatible = "brcm,bcm7211-dpfe-cpu", .data = &dpfe_api_new_v2 },
926 /* API v3 is the default going forward */
927 { .compatible = "brcm,dpfe-cpu", .data = &dpfe_api_v3 },
930 MODULE_DEVICE_TABLE(of, brcmstb_dpfe_of_match);
932 static struct platform_driver brcmstb_dpfe_driver = {
935 .of_match_table = brcmstb_dpfe_of_match,
937 .probe = brcmstb_dpfe_probe,
938 .remove = brcmstb_dpfe_remove,
939 .resume = brcmstb_dpfe_resume,
942 module_platform_driver(brcmstb_dpfe_driver);
944 MODULE_AUTHOR("Markus Mayer <mmayer@broadcom.com>");
945 MODULE_DESCRIPTION("BRCMSTB DDR PHY Front End Driver");
946 MODULE_LICENSE("GPL");