dd1c3ac009732b93f417003517920ad59ac6085a
[deb_dpdk.git] / drivers / bus / fslmc / mc / dpmng.c
1 /*-
2  * This file is provided under a dual BSD/GPLv2 license. When using or
3  * redistributing this file, you may do so under either license.
4  *
5  *   BSD LICENSE
6  *
7  * Copyright 2013-2015 Freescale Semiconductor Inc.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions are met:
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in the
15  * documentation and/or other materials provided with the distribution.
16  * * Neither the name of the above-listed copyright holders nor the
17  * names of any contributors may be used to endorse or promote products
18  * derived from this software without specific prior written permission.
19  *
20  *   GPL LICENSE SUMMARY
21  *
22  * ALTERNATIVELY, this software may be distributed under the terms of the
23  * GNU General Public License ("GPL") as published by the Free Software
24  * Foundation, either version 2 of that License or (at your option) any
25  * later version.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
31  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37  * POSSIBILITY OF SUCH DAMAGE.
38  */
39 #include <fsl_mc_sys.h>
40 #include <fsl_mc_cmd.h>
41 #include <fsl_dpmng.h>
42 #include <fsl_dpmng_cmd.h>
43
44 int mc_get_version(struct fsl_mc_io *mc_io,
45                    uint32_t cmd_flags,
46                    struct mc_version *mc_ver_info)
47 {
48         struct mc_command cmd = { 0 };
49         int err;
50
51         /* prepare command */
52         cmd.header = mc_encode_cmd_header(DPMNG_CMDID_GET_VERSION,
53                                           cmd_flags,
54                                           0);
55
56         /* send command to mc*/
57         err = mc_send_command(mc_io, &cmd);
58         if (err)
59                 return err;
60
61         /* retrieve response parameters */
62         DPMNG_RSP_GET_VERSION(cmd, mc_ver_info);
63
64         return 0;
65 }
66
67 int mc_get_soc_version(struct fsl_mc_io *mc_io,
68                        uint32_t cmd_flags,
69                        struct mc_soc_version *mc_platform_info)
70 {
71         struct mc_command cmd = { 0 };
72         int err;
73
74         /* prepare command */
75         cmd.header = mc_encode_cmd_header(DPMNG_CMDID_GET_SOC_VERSION,
76                                           cmd_flags,
77                                           0);
78
79         /* send command to mc*/
80         err = mc_send_command(mc_io, &cmd);
81         if (err)
82                 return err;
83
84         /* retrieve response parameters */
85         DPMNG_RSP_GET_SOC_VERSION(cmd, mc_platform_info);
86
87         return 0;
88 }