summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/customize/p9_xip_section_append.C
blob: e04e7f3604b3589201a2a77ae012ca147109e660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/import/chips/p9/procedures/hwp/customize/p9_xip_section_append.C $ */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2016,2017                        */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
#include <p9_xip_section_append.H>
#include <p9_xip_image.h>


fapi2::ReturnCode p9_xip_section_append(
    void*     i_section,      // Ptr to buffer that gets appended
    uint32_t  i_section_size, // Size of buffer that gets appended
    uint32_t  i_section_id,   // XIP section to be populated
    void*     i_image,        // Ptr to XIP customize image (non-ecc)
    uint32_t& io_image_size)  // in: space available for enlarged XIP image
// out: size of enlarged XIP image
{
    uint32_t unused_param = 0;
    int rc;

    FAPI_DBG(">>p9_xip_section_append");

    fapi2::current_err = fapi2::FAPI2_RC_SUCCESS;

    FAPI_ASSERT((i_section != NULL) &&
                (i_section_size > 0) &&
                (i_section_id < P9_XIP_SECTIONS) &&
                (i_image != NULL) &&
                (io_image_size > 0),
                fapi2::XIP_SECTION_APPEND_INVALID_PARAMETERS().
                set_SECTION(i_section).
                set_SECTION_SIZE(i_section_size).
                set_SECTION_ID(i_section_id).
                set_IMAGE(i_image).
                set_IMAGE_SIZE(io_image_size),
                "at least one input parameter not valid")

    FAPI_DBG("i_section 0x%x", i_section);
    FAPI_DBG("i_section_size %d", i_section_size);
    FAPI_DBG("i_section_id %d", i_section_id);
    FAPI_DBG("i_image 0x%x", i_image);
    FAPI_DBG("io_image_size %d", io_image_size);

    rc = p9_xip_append(i_image, i_section_id, i_section, i_section_size,
                       io_image_size, &unused_param, 0);
    FAPI_ASSERT((rc == 0),
                fapi2::XIP_SECTION_APPEND_APPEND_RC().
                set_APPEND_RC(rc).
                set_SECTION(i_section).
                set_SECTION_SIZE(i_section_size).
                set_SECTION_ID(i_section_id).
                set_IMAGE(i_image).
                set_IMAGE_SIZE(io_image_size),
                "Failed to append section (rc=%d)", rc);

    rc = p9_xip_image_size(i_image, &io_image_size);
    FAPI_ASSERT((rc == 0),
                fapi2::XIP_SECTION_APPEND_SIZE_RC().
                set_SIZE_RC(rc).
                set_SECTION(i_section).
                set_SECTION_SIZE(i_section_size).
                set_SECTION_ID(i_section_id).
                set_IMAGE(i_image).
                set_IMAGE_SIZE(io_image_size),
                "Failed to determine new image size (rc=%d)", rc);

fapi_try_exit:
    FAPI_DBG("<<p9_xip_section_append");
    return fapi2::current_err;
}

OpenPOWER on IntegriCloud