blob: 6fcfbd6fbcc32bbbe6ec160aab8dc30d79262cd7 [file] [log] [blame]
Dan Handley9df48042015-03-19 18:58:55 +00001/*
Louis Mayencourt6b232d92020-02-28 16:57:30 +00002 * Copyright (c) 2015-2020, ARM Limited. All rights reserved.
Dan Handley9df48042015-03-19 18:58:55 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handley9df48042015-03-19 18:58:55 +00005 */
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00006
Dan Handley9df48042015-03-19 18:58:55 +00007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
9#include <common/debug.h>
10#include <drivers/io/io_driver.h>
11#include <drivers/io/io_fip.h>
12#include <drivers/io/io_memmap.h>
13#include <drivers/io/io_storage.h>
14#include <lib/utils.h>
Louis Mayencourt6b232d92020-02-28 16:57:30 +000015
16#include <plat/arm/common/arm_fconf_getter.h>
17#include <plat/arm/common/arm_fconf_io_storage.h>
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +000018#include <plat/arm/common/plat_arm.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000019#include <plat/common/platform.h>
Louis Mayencourt6b232d92020-02-28 16:57:30 +000020#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000021
Dan Handley9df48042015-03-19 18:58:55 +000022/* IO devices */
23static const io_dev_connector_t *fip_dev_con;
Louis Mayencourt6b232d92020-02-28 16:57:30 +000024uintptr_t fip_dev_handle;
Dan Handley9df48042015-03-19 18:58:55 +000025static const io_dev_connector_t *memmap_dev_con;
Louis Mayencourt6b232d92020-02-28 16:57:30 +000026uintptr_t memmap_dev_handle;
Dan Handley9df48042015-03-19 18:58:55 +000027
28/* Weak definitions may be overridden in specific ARM standard platform */
29#pragma weak plat_arm_io_setup
30#pragma weak plat_arm_get_alt_image_source
31
Louis Mayencourt6b232d92020-02-28 16:57:30 +000032int open_fip(const uintptr_t spec)
Dan Handley9df48042015-03-19 18:58:55 +000033{
34 int result;
35 uintptr_t local_image_handle;
36
37 /* See if a Firmware Image Package is available */
Juan Castillo3a66aca2015-04-13 17:36:19 +010038 result = io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID);
Juan Castillo6e762062015-11-02 10:47:01 +000039 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +000040 result = io_open(fip_dev_handle, spec, &local_image_handle);
Juan Castillo6e762062015-11-02 10:47:01 +000041 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +000042 VERBOSE("Using FIP\n");
43 io_close(local_image_handle);
44 }
45 }
46 return result;
47}
48
Louis Mayencourt6b232d92020-02-28 16:57:30 +000049int open_memmap(const uintptr_t spec)
Dan Handley9df48042015-03-19 18:58:55 +000050{
51 int result;
52 uintptr_t local_image_handle;
53
54 result = io_dev_init(memmap_dev_handle, (uintptr_t)NULL);
Juan Castillo6e762062015-11-02 10:47:01 +000055 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +000056 result = io_open(memmap_dev_handle, spec, &local_image_handle);
Juan Castillo6e762062015-11-02 10:47:01 +000057 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +000058 VERBOSE("Using Memmap\n");
59 io_close(local_image_handle);
60 }
61 }
62 return result;
63}
64
Louis Mayencourt7d24ce12020-01-29 14:43:06 +000065int arm_io_setup(void)
Dan Handley9df48042015-03-19 18:58:55 +000066{
67 int io_result;
68
69 io_result = register_io_dev_fip(&fip_dev_con);
Louis Mayencourt7d24ce12020-01-29 14:43:06 +000070 if (io_result < 0) {
71 return io_result;
72 }
Dan Handley9df48042015-03-19 18:58:55 +000073
74 io_result = register_io_dev_memmap(&memmap_dev_con);
Louis Mayencourt7d24ce12020-01-29 14:43:06 +000075 if (io_result < 0) {
76 return io_result;
77 }
Dan Handley9df48042015-03-19 18:58:55 +000078
79 /* Open connections to devices and cache the handles */
80 io_result = io_dev_open(fip_dev_con, (uintptr_t)NULL,
81 &fip_dev_handle);
Louis Mayencourt7d24ce12020-01-29 14:43:06 +000082 if (io_result < 0) {
83 return io_result;
84 }
Dan Handley9df48042015-03-19 18:58:55 +000085
86 io_result = io_dev_open(memmap_dev_con, (uintptr_t)NULL,
87 &memmap_dev_handle);
Dan Handley9df48042015-03-19 18:58:55 +000088
Louis Mayencourt7d24ce12020-01-29 14:43:06 +000089 return io_result;
Dan Handley9df48042015-03-19 18:58:55 +000090}
91
92void plat_arm_io_setup(void)
93{
Louis Mayencourt7d24ce12020-01-29 14:43:06 +000094 int err;
95
96 err = arm_io_setup();
97 if (err < 0) {
98 panic();
99 }
Dan Handley9df48042015-03-19 18:58:55 +0000100}
101
102int plat_arm_get_alt_image_source(
Soren Brinkmann46dd1702016-01-14 10:11:05 -0800103 unsigned int image_id __unused,
104 uintptr_t *dev_handle __unused,
105 uintptr_t *image_spec __unused)
Dan Handley9df48042015-03-19 18:58:55 +0000106{
107 /* By default do not try an alternative */
Juan Castillo6e762062015-11-02 10:47:01 +0000108 return -ENOENT;
Dan Handley9df48042015-03-19 18:58:55 +0000109}
110
111/* Return an IO device handle and specification which can be used to access
112 * an image. Use this to enforce platform load policy */
Juan Castillo3a66aca2015-04-13 17:36:19 +0100113int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle,
Dan Handley9df48042015-03-19 18:58:55 +0000114 uintptr_t *image_spec)
115{
Juan Castillo6e762062015-11-02 10:47:01 +0000116 int result;
Dan Handley9df48042015-03-19 18:58:55 +0000117 const struct plat_io_policy *policy;
118
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000119 assert(image_id < MAX_NUMBER_IDS);
Juan Castillo3a66aca2015-04-13 17:36:19 +0100120
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000121 policy = FCONF_GET_PROPERTY(arm, io_policies, image_id);
Juan Castillo3a66aca2015-04-13 17:36:19 +0100122 result = policy->check(policy->image_spec);
Juan Castillo6e762062015-11-02 10:47:01 +0000123 if (result == 0) {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100124 *image_spec = policy->image_spec;
125 *dev_handle = *(policy->dev_handle);
Dan Handley9df48042015-03-19 18:58:55 +0000126 } else {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100127 VERBOSE("Trying alternative IO\n");
128 result = plat_arm_get_alt_image_source(image_id, dev_handle,
129 image_spec);
Dan Handley9df48042015-03-19 18:58:55 +0000130 }
Juan Castillo3a66aca2015-04-13 17:36:19 +0100131
Dan Handley9df48042015-03-19 18:58:55 +0000132 return result;
133}
Yatharth Kochar736a3bf2015-10-11 14:14:55 +0100134
135/*
136 * See if a Firmware Image Package is available,
137 * by checking if TOC is valid or not.
138 */
Louis Mayencourt70d7c092020-01-29 11:42:31 +0000139bool arm_io_is_toc_valid(void)
Yatharth Kochar736a3bf2015-10-11 14:14:55 +0100140{
Louis Mayencourt70d7c092020-01-29 11:42:31 +0000141 return (io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID) == 0);
Yatharth Kochar736a3bf2015-10-11 14:14:55 +0100142}