Lines Matching refs:mgn_chip
203 struct mbigen_device *mgn_chip; in mbigen_irq_domain_alloc() local
214 mgn_chip = platform_msi_get_host_data(domain); in mbigen_irq_domain_alloc()
218 &mbigen_irq_chip, mgn_chip->base); in mbigen_irq_domain_alloc()
236 struct mbigen_device *mgn_chip) in mbigen_of_create_domain() argument
265 mgn_chip); in mbigen_of_create_domain()
277 struct mbigen_device *mgn_chip) in mbigen_acpi_create_domain() argument
313 mgn_chip); in mbigen_acpi_create_domain()
321 struct mbigen_device *mgn_chip) in mbigen_acpi_create_domain() argument
329 struct mbigen_device *mgn_chip; in mbigen_device_probe() local
333 mgn_chip = devm_kzalloc(&pdev->dev, sizeof(*mgn_chip), GFP_KERNEL); in mbigen_device_probe()
334 if (!mgn_chip) in mbigen_device_probe()
337 mgn_chip->pdev = pdev; in mbigen_device_probe()
343 mgn_chip->base = devm_ioremap(&pdev->dev, res->start, in mbigen_device_probe()
345 if (!mgn_chip->base) { in mbigen_device_probe()
351 err = mbigen_of_create_domain(pdev, mgn_chip); in mbigen_device_probe()
353 err = mbigen_acpi_create_domain(pdev, mgn_chip); in mbigen_device_probe()
362 platform_set_drvdata(pdev, mgn_chip); in mbigen_device_probe()