summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 07ffeb5)
raw | patch | inline | side by side (parent: 07ffeb5)
author | Wendy Liang <jliang@xilinx.com> | |
Wed, 29 Jun 2016 20:07:27 +0000 (13:07 -0700) | ||
committer | Wendy Liang <jliang@xilinx.com> | |
Thu, 13 Oct 2016 05:01:44 +0000 (22:01 -0700) |
Remove not used remoteproc data from the remote proc data table.
Signed-off-by: Wendy Liang <jliang@xilinx.com>
Signed-off-by: Wendy Liang <jliang@xilinx.com>
apps/machine/zynqmp_r5/platform_info.c | patch | blob | history |
index 7ce424b949faf70556645c4cf6de7ff9174b5454..37fd9160c26aff201504c4380f4316a69663b3eb 100755 (executable)
/* Reference implementation that show cases platform_get_cpu_info and
platform_get_for_firmware API implementation for Bare metal environment */
-extern struct hil_platform_ops proc_ops;
+extern struct hil_platform_ops zynqmp_r5_a53_proc_ops;
static struct ipi_info chn_ipi_info = { IPI_BASEADDR, IPI_CHN_BITMASK };
},
/* HIL platform ops table. */
- &proc_ops,
+ &zynqmp_r5_a53_proc_ops,
/* Next three fields are for future use only */
0,
NULL,
{NULL, NULL}
},
-
- /* CPU node for remote context */
- {
- /* CPU ID of remote */
- REMOTE_CPU_ID,
-
- /* Shared memory info - Last field is not used currently */
- {
- SHM_ADDR, SHM_SIZE, 0x00},
-
- /* VirtIO device info */
- {
- 0, 0, 0,
- {
- {
- /* Provide vring interrupts info here. Other fields are obtained
- * from the rsc table so leave them empty.
- */
- NULL, NULL, 0, 0,
- {
- VRING0_IPI_INTR_VECT, 0x1006, 1, (void *)(&chn_ipi_info)
- }
- },
- {
- NULL, NULL, 0, 0,
- {
- VRING1_IPI_INTR_VECT, 0x1006, 1, (void *)(&chn_ipi_info)
- }
- }
- }
- },
-
- /* Number of RPMSG channels */
- 1,
-
- /* RPMSG channel info - Only channel name is expected currently */
- {
- {"rpmsg-openamp-demo-channel"}
- },
-
- /* HIL platform ops table. */
- &proc_ops,
-
- /* Next three fields are for future use only */
- 0,
- 0,
- NULL,
- {NULL, NULL}
- }
};
-const int proc_table_size = sizeof (proc_table)/sizeof(struct hil_proc);
-