summaryrefslogtreecommitdiffstats
path: root/board/freescale/common/ls102xa_stream_id.c
blob: 6154c9c45886cb1e2cef93f31c539b7a6d4dfcfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright 2014 Freescale Semiconductor
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <asm/io.h>
#include <asm/arch/ls102xa_stream_id.h>

void ls102xa_config_smmu_stream_id(struct smmu_stream_id *id, uint32_t num)
{
	uint32_t *scfg = (uint32_t *)CONFIG_SYS_FSL_SCFG_ADDR;
	int i;

	for (i = 0; i < num; i++)
		out_be32(scfg + id[i].offset, id[i].stream_id);
}
OpenPOWER on IntegriCloud