blob: 845309f146fe317fd82ec74dcc39a1158ce6d0aa [file] [log] [blame]
Felipe Contreras90173882010-10-04 19:09:14 +03001/*
2 * TI's OMAP DSP platform device registration
3 *
4 * Copyright (C) 2005-2006 Texas Instruments, Inc.
5 * Copyright (C) 2009 Nokia Corporation
6 *
7 * Written by Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Paul Walmsley59fb6592010-12-21 15:30:55 -070014/*
15 * XXX The function pointers to the PRM/CM functions are incorrect and
16 * should be removed. No device driver should be changing PRM/CM bits
17 * directly; that's a layering violation -- those bits are the responsibility
18 * of the OMAP PM core code.
19 */
20
Tony Lindgrena1bcc1d2011-11-07 12:27:10 -080021#include <linux/module.h>
Felipe Contreras90173882010-10-04 19:09:14 +030022#include <linux/platform_device.h>
Paul Walmsley59fb6592010-12-21 15:30:55 -070023#include "cm2xxx_3xxx.h"
24#include "prm2xxx_3xxx.h"
Felipe Contreras90173882010-10-04 19:09:14 +030025#ifdef CONFIG_BRIDGE_DVFS
26#include <plat/omap-pm.h>
27#endif
28
29#include <plat/dsp.h>
30
Felipe Contreras90173882010-10-04 19:09:14 +030031static struct platform_device *omap_dsp_pdev;
32
33static struct omap_dsp_platform_data omap_dsp_pdata __initdata = {
34#ifdef CONFIG_BRIDGE_DVFS
35 .dsp_set_min_opp = omap_pm_dsp_set_min_opp,
36 .dsp_get_opp = omap_pm_dsp_get_opp,
37 .cpu_set_freq = omap_pm_cpu_set_freq,
38 .cpu_get_freq = omap_pm_cpu_get_freq,
39#endif
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070040 .dsp_prm_read = omap2_prm_read_mod_reg,
41 .dsp_prm_write = omap2_prm_write_mod_reg,
42 .dsp_prm_rmw_bits = omap2_prm_rmw_mod_reg_bits,
43 .dsp_cm_read = omap2_cm_read_mod_reg,
44 .dsp_cm_write = omap2_cm_write_mod_reg,
45 .dsp_cm_rmw_bits = omap2_cm_rmw_mod_reg_bits,
Felipe Contreras90173882010-10-04 19:09:14 +030046};
47
Tony Lindgren7f284272012-05-09 09:59:26 -070048static phys_addr_t omap_dsp_phys_mempool_base;
49
50void __init omap_dsp_reserve_sdram_memblock(void)
51{
52 phys_addr_t size = CONFIG_TIDSPBRIDGE_MEMPOOL_SIZE;
53 phys_addr_t paddr;
54
55 if (!size)
56 return;
57
58 paddr = arm_memblock_steal(size, SZ_1M);
59 if (!paddr) {
60 pr_err("%s: failed to reserve %llx bytes\n",
61 __func__, (unsigned long long)size);
62 return;
63 }
64
65 omap_dsp_phys_mempool_base = paddr;
66}
67
68static phys_addr_t omap_dsp_get_mempool_base(void)
69{
70 return omap_dsp_phys_mempool_base;
71}
72
Felipe Contreras90173882010-10-04 19:09:14 +030073static int __init omap_dsp_init(void)
74{
75 struct platform_device *pdev;
76 int err = -ENOMEM;
77 struct omap_dsp_platform_data *pdata = &omap_dsp_pdata;
78
79 pdata->phys_mempool_base = omap_dsp_get_mempool_base();
80
81 if (pdata->phys_mempool_base) {
82 pdata->phys_mempool_size = CONFIG_TIDSPBRIDGE_MEMPOOL_SIZE;
Felipe Contreras28ee7932012-05-08 16:31:12 -070083 pr_info("%s: %llx bytes @ %llx\n", __func__,
84 (unsigned long long)pdata->phys_mempool_size,
85 (unsigned long long)pdata->phys_mempool_base);
Felipe Contreras90173882010-10-04 19:09:14 +030086 }
87
88 pdev = platform_device_alloc("omap-dsp", -1);
89 if (!pdev)
90 goto err_out;
91
92 err = platform_device_add_data(pdev, pdata, sizeof(*pdata));
93 if (err)
94 goto err_out;
95
96 err = platform_device_add(pdev);
97 if (err)
98 goto err_out;
99
100 omap_dsp_pdev = pdev;
101 return 0;
102
103err_out:
104 platform_device_put(pdev);
105 return err;
106}
107module_init(omap_dsp_init);
108
109static void __exit omap_dsp_exit(void)
110{
111 platform_device_unregister(omap_dsp_pdev);
112}
113module_exit(omap_dsp_exit);
114
115MODULE_AUTHOR("Hiroshi DOYU");
116MODULE_DESCRIPTION("TI's OMAP DSP platform device registration");
117MODULE_LICENSE("GPL");