[09a0a8f0] | 1 | /*
|
---|
| 2 | * Copyright (c) 2012 Jan Vesely
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /**
|
---|
[0f2a9be] | 30 | * @defgroup amdm37x TI AM/DM37x platform driver.
|
---|
[09a0a8f0] | 31 | * @brief HelenOS TI AM/DM37x platform driver.
|
---|
| 32 | * @{
|
---|
| 33 | */
|
---|
| 34 |
|
---|
| 35 | /** @file
|
---|
| 36 | */
|
---|
| 37 |
|
---|
[bf815c8] | 38 | #define DEBUG_CM 0
|
---|
[7290ca0] | 39 |
|
---|
[09a0a8f0] | 40 | #include <ddf/log.h>
|
---|
| 41 | #include <errno.h>
|
---|
| 42 | #include <ops/hw_res.h>
|
---|
| 43 | #include <stdio.h>
|
---|
| 44 |
|
---|
[7a6d91b] | 45 | #include "amdm37x.h"
|
---|
[063ae706] | 46 |
|
---|
[2a37b9f] | 47 | #define NAME "amdm37x"
|
---|
[09a0a8f0] | 48 |
|
---|
[f25f1e6] | 49 | typedef struct {
|
---|
[85a54b4] | 50 | const char *name;
|
---|
| 51 | match_id_t match_id;
|
---|
[f25f1e6] | 52 | hw_resource_list_t hw_resources;
|
---|
[2a37b9f] | 53 | } amdm37x_fun_t;
|
---|
[f25f1e6] | 54 |
|
---|
[85a54b4] | 55 | /* See amdm37x TRM page 3316 for these values */
|
---|
| 56 | #define OHCI_BASE_ADDRESS 0x48064400
|
---|
| 57 | #define OHCI_SIZE 1024
|
---|
| 58 | #define EHCI_BASE_ADDRESS 0x48064800
|
---|
| 59 | #define EHCI_SIZE 1024
|
---|
| 60 |
|
---|
| 61 | /* See amdm37x TRM page 1813 for these values */
|
---|
| 62 | #define DSS_BASE_ADDRESS 0x48050000
|
---|
| 63 | #define DSS_SIZE 512
|
---|
| 64 | #define DISPC_BASE_ADDRESS 0x48050400
|
---|
| 65 | #define DISPC_SIZE 1024
|
---|
| 66 | #define VIDEO_ENC_BASE_ADDRESS 0x48050C00
|
---|
| 67 | #define VIDEO_ENC_SIZE 256
|
---|
| 68 |
|
---|
[f25f1e6] | 69 |
|
---|
| 70 | static hw_resource_t ohci_res[] = {
|
---|
| 71 | {
|
---|
| 72 | .type = MEM_RANGE,
|
---|
| 73 | .res.io_range = {
|
---|
| 74 | .address = OHCI_BASE_ADDRESS,
|
---|
| 75 | .size = OHCI_SIZE,
|
---|
| 76 | .endianness = LITTLE_ENDIAN
|
---|
| 77 | },
|
---|
| 78 | },
|
---|
| 79 | {
|
---|
| 80 | .type = INTERRUPT,
|
---|
| 81 | .res.interrupt = { .irq = 76 },
|
---|
| 82 | },
|
---|
| 83 | };
|
---|
| 84 |
|
---|
| 85 | static hw_resource_t ehci_res[] = {
|
---|
| 86 | {
|
---|
| 87 | .type = MEM_RANGE,
|
---|
| 88 | /* See amdm37x TRM page. 3316 for these values */
|
---|
| 89 | .res.io_range = {
|
---|
| 90 | .address = EHCI_BASE_ADDRESS,
|
---|
| 91 | .size = EHCI_SIZE,
|
---|
| 92 | .endianness = LITTLE_ENDIAN
|
---|
| 93 | },
|
---|
| 94 | },
|
---|
| 95 | {
|
---|
| 96 | .type = INTERRUPT,
|
---|
| 97 | .res.interrupt = { .irq = 77 },
|
---|
| 98 | },
|
---|
| 99 | };
|
---|
| 100 |
|
---|
[85a54b4] | 101 | static hw_resource_t disp_res[] = {
|
---|
| 102 | {
|
---|
| 103 | .type = MEM_RANGE,
|
---|
| 104 | .res.io_range = {
|
---|
| 105 | .address = DSS_BASE_ADDRESS,
|
---|
| 106 | .size = DSS_SIZE,
|
---|
| 107 | .endianness = LITTLE_ENDIAN
|
---|
| 108 | },
|
---|
| 109 | },
|
---|
| 110 | {
|
---|
| 111 | .type = MEM_RANGE,
|
---|
| 112 | .res.io_range = {
|
---|
| 113 | .address = DISPC_BASE_ADDRESS,
|
---|
| 114 | .size = DISPC_SIZE,
|
---|
| 115 | .endianness = LITTLE_ENDIAN
|
---|
| 116 | },
|
---|
| 117 | },
|
---|
| 118 | {
|
---|
| 119 | .type = MEM_RANGE,
|
---|
| 120 | .res.io_range = {
|
---|
| 121 | .address = VIDEO_ENC_BASE_ADDRESS,
|
---|
| 122 | .size = VIDEO_ENC_SIZE,
|
---|
| 123 | .endianness = LITTLE_ENDIAN
|
---|
| 124 | },
|
---|
| 125 | },
|
---|
| 126 | {
|
---|
| 127 | .type = INTERRUPT,
|
---|
| 128 | .res.interrupt = { .irq = 25 },
|
---|
| 129 | },
|
---|
[bebf97d] | 130 | };
|
---|
| 131 |
|
---|
[2a37b9f] | 132 | static const amdm37x_fun_t amdm37x_funcs[] = {
|
---|
[85a54b4] | 133 | {
|
---|
| 134 | .name = "ohci",
|
---|
| 135 | .match_id = { .id = "usb/host=ohci", .score = 90 },
|
---|
| 136 | .hw_resources = { .resources = ohci_res, .count = ARRAY_SIZE(ohci_res) }
|
---|
| 137 | },
|
---|
| 138 | {
|
---|
| 139 | .name = "ehci",
|
---|
| 140 | .match_id = { .id = "usb/host=ehci", .score = 90 },
|
---|
| 141 | .hw_resources = { .resources = ehci_res, .count = ARRAY_SIZE(ehci_res) }
|
---|
| 142 | },
|
---|
| 143 | {
|
---|
| 144 | .name = "fb",
|
---|
| 145 | .match_id = { .id = "amdm37x&dispc", .score = 90 },
|
---|
| 146 | .hw_resources = { .resources = disp_res, .count = ARRAY_SIZE(disp_res) }
|
---|
| 147 | },
|
---|
[f25f1e6] | 148 | };
|
---|
| 149 |
|
---|
[85a54b4] | 150 |
|
---|
[2a37b9f] | 151 | static hw_resource_list_t *amdm37x_get_resources(ddf_fun_t *fnode);
|
---|
| 152 | static bool amdm37x_enable_interrupt(ddf_fun_t *fun);
|
---|
[f25f1e6] | 153 |
|
---|
| 154 | static hw_res_ops_t fun_hw_res_ops = {
|
---|
[2a37b9f] | 155 | .get_resource_list = &amdm37x_get_resources,
|
---|
| 156 | .enable_interrupt = &amdm37x_enable_interrupt,
|
---|
[f25f1e6] | 157 | };
|
---|
| 158 |
|
---|
[2a37b9f] | 159 | static ddf_dev_ops_t amdm37x_fun_ops = {
|
---|
[f25f1e6] | 160 | .interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops
|
---|
| 161 | };
|
---|
| 162 |
|
---|
[2a37b9f] | 163 | static int amdm37x_add_fun(ddf_dev_t *dev, const amdm37x_fun_t *fun)
|
---|
[09a0a8f0] | 164 | {
|
---|
[85a54b4] | 165 | assert(dev);
|
---|
| 166 | assert(fun);
|
---|
| 167 |
|
---|
| 168 | ddf_msg(LVL_DEBUG, "Adding new function '%s'.", fun->name);
|
---|
| 169 |
|
---|
[2be2506a] | 170 | /* Create new device function. */
|
---|
[85a54b4] | 171 | ddf_fun_t *fnode = ddf_fun_create(dev, fun_inner, fun->name);
|
---|
[09a0a8f0] | 172 | if (fnode == NULL)
|
---|
[2be2506a] | 173 | return ENOMEM;
|
---|
[09a0a8f0] | 174 |
|
---|
[2be2506a] | 175 | /* Add match id */
|
---|
[85a54b4] | 176 | int ret = ddf_fun_add_match_id(fnode,
|
---|
| 177 | fun->match_id.id, fun->match_id.score);
|
---|
[878b764] | 178 | if (ret != EOK) {
|
---|
[2be2506a] | 179 | ddf_fun_destroy(fnode);
|
---|
[878b764] | 180 | return ret;
|
---|
[2be2506a] | 181 | }
|
---|
[09a0a8f0] | 182 |
|
---|
[bebf97d] | 183 | /* Alloc needed data */
|
---|
[2a37b9f] | 184 | amdm37x_fun_t *rf =
|
---|
| 185 | ddf_fun_data_alloc(fnode, sizeof(amdm37x_fun_t));
|
---|
[bebf97d] | 186 | if (!rf) {
|
---|
| 187 | ddf_fun_destroy(fnode);
|
---|
| 188 | return ENOMEM;
|
---|
| 189 | }
|
---|
| 190 | *rf = *fun;
|
---|
| 191 |
|
---|
[09a0a8f0] | 192 | /* Set provided operations to the device. */
|
---|
[2a37b9f] | 193 | ddf_fun_set_ops(fnode, &amdm37x_fun_ops);
|
---|
[09a0a8f0] | 194 |
|
---|
| 195 | /* Register function. */
|
---|
[878b764] | 196 | ret = ddf_fun_bind(fnode);
|
---|
| 197 | if (ret != EOK) {
|
---|
[85a54b4] | 198 | ddf_msg(LVL_ERROR, "Failed binding function %s.", fun->name);
|
---|
[09a0a8f0] | 199 | ddf_fun_destroy(fnode);
|
---|
[878b764] | 200 | return ret;
|
---|
[09a0a8f0] | 201 | }
|
---|
| 202 |
|
---|
[878b764] | 203 | return EOK;
|
---|
[09a0a8f0] | 204 | }
|
---|
| 205 |
|
---|
[063ae706] | 206 | /** Add the root device.
|
---|
[09a0a8f0] | 207 | *
|
---|
| 208 | * @param dev Device which is root of the whole device tree
|
---|
| 209 | * (both of HW and pseudo devices).
|
---|
| 210 | *
|
---|
| 211 | * @return Zero on success, negative error number otherwise.
|
---|
| 212 | *
|
---|
| 213 | */
|
---|
[2a37b9f] | 214 | static int amdm37x_dev_add(ddf_dev_t *dev)
|
---|
[09a0a8f0] | 215 | {
|
---|
[f25f1e6] | 216 | assert(dev);
|
---|
| 217 | amdm37x_t *device = ddf_dev_data_alloc(dev, sizeof(amdm37x_t));
|
---|
| 218 | if (!device)
|
---|
| 219 | return ENOMEM;
|
---|
[7a6d91b] | 220 | int ret = amdm37x_init(device, DEBUG_CM);
|
---|
[f25f1e6] | 221 | if (ret != EOK) {
|
---|
| 222 | ddf_msg(LVL_FATAL, "Failed to setup hw access!.\n");
|
---|
| 223 | return ret;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
[52e020b] | 226 | /* Set dplls to ON and automatic */
|
---|
[7a6d91b] | 227 | amdm37x_setup_dpll_on_autoidle(device);
|
---|
[e5e2d73] | 228 |
|
---|
| 229 | /* Enable function and interface clocks */
|
---|
[7a6d91b] | 230 | amdm37x_usb_clocks_set(device, true);
|
---|
[063ae706] | 231 |
|
---|
[e5e2d73] | 232 | /* Init TLL */
|
---|
[7a6d91b] | 233 | ret = amdm37x_usb_tll_init(device);
|
---|
[063ae706] | 234 | if (ret != EOK) {
|
---|
| 235 | ddf_msg(LVL_FATAL, "Failed to init USB TLL!.\n");
|
---|
[7a6d91b] | 236 | amdm37x_usb_clocks_set(device, false);
|
---|
[063ae706] | 237 | return ret;
|
---|
[712a10b] | 238 | }
|
---|
| 239 |
|
---|
[09a0a8f0] | 240 | /* Register functions */
|
---|
[85a54b4] | 241 | for (unsigned i = 0; i < ARRAY_SIZE(amdm37x_funcs); ++i) {
|
---|
[2a37b9f] | 242 | if (amdm37x_add_fun(dev, &amdm37x_funcs[i]) != EOK)
|
---|
[85a54b4] | 243 | ddf_msg(LVL_ERROR, "Failed to add %s function for "
|
---|
| 244 | "BeagleBoard-xM platform.", amdm37x_funcs[i].name);
|
---|
| 245 | }
|
---|
[09a0a8f0] | 246 | return EOK;
|
---|
| 247 | }
|
---|
| 248 |
|
---|
| 249 | /** The root device driver's standard operations. */
|
---|
[2a37b9f] | 250 | static driver_ops_t amdm37x_ops = {
|
---|
| 251 | .dev_add = &amdm37x_dev_add
|
---|
[09a0a8f0] | 252 | };
|
---|
| 253 |
|
---|
| 254 | /** The root device driver structure. */
|
---|
[2a37b9f] | 255 | static driver_t amdm37x_driver = {
|
---|
[09a0a8f0] | 256 | .name = NAME,
|
---|
[2a37b9f] | 257 | .driver_ops = &amdm37x_ops
|
---|
[09a0a8f0] | 258 | };
|
---|
| 259 |
|
---|
[2a37b9f] | 260 | static hw_resource_list_t * amdm37x_get_resources(ddf_fun_t *fnode)
|
---|
[09a0a8f0] | 261 | {
|
---|
[2a37b9f] | 262 | amdm37x_fun_t *fun = ddf_fun_data_get(fnode);
|
---|
[09a0a8f0] | 263 | assert(fun != NULL);
|
---|
| 264 | return &fun->hw_resources;
|
---|
| 265 | }
|
---|
| 266 |
|
---|
[2a37b9f] | 267 | static bool amdm37x_enable_interrupt(ddf_fun_t *fun)
|
---|
[09a0a8f0] | 268 | {
|
---|
[7a6d91b] | 269 | //TODO: Implement
|
---|
[09a0a8f0] | 270 | return false;
|
---|
| 271 | }
|
---|
| 272 |
|
---|
| 273 | int main(int argc, char *argv[])
|
---|
| 274 | {
|
---|
| 275 | printf("%s: HelenOS AM/DM37x(OMAP37x) platform driver\n", NAME);
|
---|
[f25f1e6] | 276 | ddf_log_init(NAME);
|
---|
[2a37b9f] | 277 | return ddf_driver_main(&amdm37x_driver);
|
---|
[09a0a8f0] | 278 | }
|
---|
| 279 |
|
---|
| 280 | /**
|
---|
| 281 | * @}
|
---|
| 282 | */
|
---|