1 // SPDX-License-Identifier: ISC
3 * Copyright (c) 2014 Broadcom Corporation
5 #include <linux/init.h>
7 #include <linux/of_irq.h>
15 void brcmf_of_probe(struct device
*dev
, enum brcmf_bus_type bus_type
,
16 struct brcmf_mp_device
*settings
)
18 struct brcmfmac_sdio_pd
*sdio
= &settings
->bus
.sdio
;
19 struct device_node
*root
, *np
= dev
->of_node
;
24 /* Set board-type to the first string of the machine compatible prop */
25 root
= of_find_node_by_path("/");
31 of_property_read_string_index(root
, "compatible", 0, &tmp
);
33 /* get rid of '/' in the compatible string to be able to find the FW */
34 len
= strlen(tmp
) + 1;
35 board_type
= devm_kzalloc(dev
, len
, GFP_KERNEL
);
36 strscpy(board_type
, tmp
, len
);
37 for (i
= 0; i
< board_type
[i
]; i
++) {
38 if (board_type
[i
] == '/')
41 settings
->board_type
= board_type
;
46 if (!np
|| bus_type
!= BRCMF_BUSTYPE_SDIO
||
47 !of_device_is_compatible(np
, "brcm,bcm4329-fmac"))
50 if (of_property_read_u32(np
, "brcm,drive-strength", &val
) == 0)
51 sdio
->drive_strength
= val
;
53 /* make sure there are interrupts defined in the node */
54 if (!of_find_property(np
, "interrupts", NULL
))
57 irq
= irq_of_parse_and_map(np
, 0);
59 brcmf_err("interrupt could not be mapped\n");
62 irqf
= irqd_get_trigger_type(irq_get_irq_data(irq
));
64 sdio
->oob_irq_supported
= true;
65 sdio
->oob_irq_nr
= irq
;
66 sdio
->oob_irq_flags
= irqf
;