mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	This patch targets the last remaining commands left to sync to their latest form - mainly the mc_get_version() API. Besides this, remove any macro which is now of no help. Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * Freescale Layerscape MC I/O wrapper
 | 
						|
 *
 | 
						|
 * Copyright (C) 2013-2015 Freescale Semiconductor, Inc.
 | 
						|
 * Author: German Rivera <German.Rivera@freescale.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include <fsl-mc/fsl_mc_sys.h>
 | 
						|
#include <fsl-mc/fsl_mc_cmd.h>
 | 
						|
#include <common.h>
 | 
						|
#include <errno.h>
 | 
						|
#include <asm/io.h>
 | 
						|
#include <linux/delay.h>
 | 
						|
 | 
						|
static u16 mc_cmd_hdr_read_cmdid(struct mc_command *cmd)
 | 
						|
{
 | 
						|
	struct mc_cmd_header *hdr = (struct mc_cmd_header *)&cmd->header;
 | 
						|
	u16 cmd_id = le16_to_cpu(hdr->cmd_id);
 | 
						|
 | 
						|
	return cmd_id;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * mc_send_command - Send MC command and wait for response
 | 
						|
 *
 | 
						|
 * @mc_io: Pointer to MC I/O object to be used
 | 
						|
 * @cmd: MC command buffer. On input, it contains the command to send to the MC.
 | 
						|
 * On output, it contains the response from the MC if any.
 | 
						|
 *
 | 
						|
 * Depending on the sharing option specified when creating the MC portal
 | 
						|
 * wrapper, this function will use a spinlock or mutex to ensure exclusive
 | 
						|
 * access to the MC portal from the point when the command is sent until a
 | 
						|
 * response is received from the MC.
 | 
						|
 */
 | 
						|
int mc_send_command(struct fsl_mc_io *mc_io,
 | 
						|
		    struct mc_command *cmd)
 | 
						|
{
 | 
						|
	enum mc_cmd_status status;
 | 
						|
	int timeout = 12000;
 | 
						|
 | 
						|
	mc_write_command(mc_io->mmio_regs, cmd);
 | 
						|
 | 
						|
	for ( ; ; ) {
 | 
						|
		status = mc_read_response(mc_io->mmio_regs, cmd);
 | 
						|
		if (status != MC_CMD_STATUS_READY)
 | 
						|
			break;
 | 
						|
 | 
						|
		if (--timeout == 0) {
 | 
						|
			printf("Error: Timeout waiting for MC response\n");
 | 
						|
			return -ETIMEDOUT;
 | 
						|
		}
 | 
						|
 | 
						|
		udelay(500);
 | 
						|
	}
 | 
						|
 | 
						|
	if (status != MC_CMD_STATUS_OK) {
 | 
						|
		printf("Error: MC command failed (portal: %p, obj handle: %#x, command: %#x, status: %#x)\n",
 | 
						|
		       mc_io->mmio_regs,
 | 
						|
			(unsigned int)mc_cmd_hdr_read_token(cmd),
 | 
						|
		       (unsigned int)mc_cmd_hdr_read_cmdid(cmd),
 | 
						|
		       (unsigned int)status);
 | 
						|
 | 
						|
		return -EIO;
 | 
						|
	}
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 |