blob: 0284c3daed31fd764bcacbbcfb30ded9184337e8 [file] [log] [blame]
James Morrissey9d72b4e2014-02-10 17:04:32 +00001/*
Dan Handley2b6b5742015-03-19 19:17:53 +00002 * Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved.
James Morrissey9d72b4e2014-02-10 17:04:32 +00003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include <assert.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010032#include <debug.h>
Dan Handley714a0d22014-04-09 13:13:04 +010033#include <io_driver.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010034#include <io_storage.h>
35#include <io_semihosting.h>
Dan Handley2b6b5742015-03-19 19:17:53 +000036#include <plat_arm.h>
James Morrissey9d72b4e2014-02-10 17:04:32 +000037
James Morrissey9d72b4e2014-02-10 17:04:32 +000038/* IO devices */
Dan Handleya4cb68e2014-04-23 13:47:06 +010039static const io_dev_connector_t *sh_dev_con;
Dan Handleya4cb68e2014-04-23 13:47:06 +010040static uintptr_t sh_dev_handle;
Harry Liebel561cd332014-02-14 14:42:48 +000041
Harry Liebel561cd332014-02-14 14:42:48 +000042
Dan Handleya4cb68e2014-04-23 13:47:06 +010043static int open_semihosting(const uintptr_t spec)
Harry Liebel561cd332014-02-14 14:42:48 +000044{
45 int result = IO_FAIL;
Dan Handleya4cb68e2014-04-23 13:47:06 +010046 uintptr_t local_image_handle;
Harry Liebel561cd332014-02-14 14:42:48 +000047
48 /* See if the file exists on semi-hosting.*/
Dan Handley2b6b5742015-03-19 19:17:53 +000049 result = io_dev_init(sh_dev_handle, (uintptr_t)NULL);
Harry Liebel561cd332014-02-14 14:42:48 +000050 if (result == IO_SUCCESS) {
51 result = io_open(sh_dev_handle, spec, &local_image_handle);
52 if (result == IO_SUCCESS) {
Dan Handley91b624e2014-07-29 17:14:00 +010053 VERBOSE("Using Semi-hosting IO\n");
Harry Liebel561cd332014-02-14 14:42:48 +000054 io_close(local_image_handle);
55 }
56 }
57 return result;
58}
59
Dan Handley2b6b5742015-03-19 19:17:53 +000060void plat_arm_io_setup(void)
Harry Liebel561cd332014-02-14 14:42:48 +000061{
Dan Handley2b6b5742015-03-19 19:17:53 +000062 int io_result;
Harry Liebel561cd332014-02-14 14:42:48 +000063
Dan Handley2b6b5742015-03-19 19:17:53 +000064 arm_io_setup();
Harry Liebel561cd332014-02-14 14:42:48 +000065
Dan Handley2b6b5742015-03-19 19:17:53 +000066 /* Register the additional IO devices on this platform */
67 io_result = register_io_dev_sh(&sh_dev_con);
Harry Liebel561cd332014-02-14 14:42:48 +000068 assert(io_result == IO_SUCCESS);
69
70 /* Open connections to devices and cache the handles */
Dan Handley2b6b5742015-03-19 19:17:53 +000071 io_result = io_dev_open(sh_dev_con, (uintptr_t)NULL, &sh_dev_handle);
Harry Liebel561cd332014-02-14 14:42:48 +000072 assert(io_result == IO_SUCCESS);
73
James Morrissey9d72b4e2014-02-10 17:04:32 +000074 /* Ignore improbable errors in release builds */
75 (void)io_result;
76}
77
Dan Handley2b6b5742015-03-19 19:17:53 +000078int plat_arm_get_alt_image_source(
79 const uintptr_t image_spec,
80 uintptr_t *dev_handle)
James Morrissey9d72b4e2014-02-10 17:04:32 +000081{
Dan Handley2b6b5742015-03-19 19:17:53 +000082 int result = open_semihosting(image_spec);
83 if (result == IO_SUCCESS)
84 *dev_handle = sh_dev_handle;
James Morrissey9d72b4e2014-02-10 17:04:32 +000085
James Morrissey9d72b4e2014-02-10 17:04:32 +000086 return result;
87}