⛏️ index : haiku.git

/*
 * Copyright 2006-2016, Haiku, Inc. All Rights Reserved.
 * Distributed under the terms of the MIT License.
 *
 * Authors:
 *		Axel Dörfler, axeld@pinc-software.de
 */


#include "accelerant_protos.h"
#include "accelerant.h"

#include "utility.h"

#include <Debug.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <syslog.h>

#include <new>

#include <AGP.h>
#include <AutoDeleterOS.h>


#undef TRACE
#define TRACE_ACCELERANT
#ifdef TRACE_ACCELERANT
#	define TRACE(x...) _sPrintf("intel_extreme: " x)
#else
#	define TRACE(x...)
#endif

#define ERROR(x...) _sPrintf("intel_extreme: " x)
#define CALLED(x...) TRACE("CALLED %s\n", __PRETTY_FUNCTION__)


struct accelerant_info* gInfo;
uint32 gDumpCount;


//	#pragma mark -


// intel_reg --mmio=ie-0001.bin --devid=27a2 dump
void
dump_registers()
{
	char filename[255];

	sprintf(filename, "/boot/system/cache/tmp/ie-%04" B_PRId32 ".bin",
		gDumpCount);

	ERROR("%s: Taking register dump #%" B_PRId32 "\n", __func__, gDumpCount);

	area_info areaInfo;
	get_area_info(gInfo->shared_info->registers_area, &areaInfo);

	int fd = open(filename, O_CREAT | O_WRONLY, 0644);
	uint32 data = 0;
	if (fd >= 0) {
		for (uint32 i = 0; i < areaInfo.size; i += sizeof(data)) {
			//char line[512];
			//int length = sprintf(line, "%05" B_PRIx32 ": "
			//	"%08" B_PRIx32 " %08" B_PRIx32 " %08" B_PRIx32 " %08" B_PRIx32 "\n",
			//	i, read32(i), read32(i + 4), read32(i + 8), read32(i + 12));
			data = read32(i);
			write(fd, &data, sizeof(data));
		}
		close(fd);
		sync();
	}

	gDumpCount++;
}


/*! This is the common accelerant_info initializer. It is called by
	both, the first accelerant and all clones.
*/
static status_t
init_common(int device, bool isClone)
{
	// initialize global accelerant info structure

	// Number of register dumps we have... taken.
	gDumpCount = 0;

	gInfo = (accelerant_info*)malloc(sizeof(accelerant_info));
	if (gInfo == NULL)
		return B_NO_MEMORY;
	MemoryDeleter infoDeleter(gInfo);

	memset(gInfo, 0, sizeof(accelerant_info));

	gInfo->is_clone = isClone;
	gInfo->device = device;

	// get basic info from driver

	intel_get_private_data data;
	data.magic = INTEL_PRIVATE_DATA_MAGIC;

	if (ioctl(device, INTEL_GET_PRIVATE_DATA, &data,
			sizeof(intel_get_private_data)) != 0)
		return B_ERROR;

	AreaDeleter sharedDeleter(clone_area("intel extreme shared info",
		(void**)&gInfo->shared_info, B_ANY_ADDRESS, B_READ_AREA | B_WRITE_AREA,
		data.shared_info_area));
	status_t status = gInfo->shared_info_area = sharedDeleter.Get();
	if (status < B_OK)
		return status;

	AreaDeleter regsDeleter(clone_area("intel extreme regs",
		(void**)&gInfo->registers, B_ANY_ADDRESS, B_READ_AREA | B_WRITE_AREA,
		gInfo->shared_info->registers_area));
	status = gInfo->regs_area = regsDeleter.Get();
	if (status < B_OK)
		return status;

	infoDeleter.Detach();
	sharedDeleter.Detach();
	regsDeleter.Detach();

	// The overlay registers, hardware status, and cursor memory share
	// a single area with the shared_info

	if (gInfo->shared_info->overlay_offset != 0) {
		gInfo->overlay_registers = (struct overlay_registers*)
			(gInfo->shared_info->graphics_memory
			+ gInfo->shared_info->overlay_offset);
	}

	if (gInfo->shared_info->device_type.InGroup(INTEL_GROUP_96x)) {
		// allocate some extra memory for the 3D context
		if (intel_allocate_memory(INTEL_i965_3D_CONTEXT_SIZE,
				B_APERTURE_NON_RESERVED, gInfo->context_base) == B_OK) {
			gInfo->context_offset = gInfo->context_base
				- (addr_t)gInfo->shared_info->graphics_memory;
		}
	}

	gInfo->pipe_count = 0;

	// Allocate all of our pipes
	int pipeCnt = 2;
	if (gInfo->shared_info->device_type.Generation() >= 12)
		pipeCnt = 4;
	else if (gInfo->shared_info->device_type.Generation() >= 7)
		pipeCnt = 3;

	for (int i = 0; i < pipeCnt; i++) {
		switch (i) {
			case 0:
				gInfo->pipes[i] = new(std::nothrow) Pipe(INTEL_PIPE_A);
				break;
			case 1:
				gInfo->pipes[i] = new(std::nothrow) Pipe(INTEL_PIPE_B);
				break;
			case 2:
				gInfo->pipes[i] = new(std::nothrow) Pipe(INTEL_PIPE_C);
				break;
			case 3:
				gInfo->pipes[i] = new(std::nothrow) Pipe(INTEL_PIPE_D);
				break;
			default:
				ERROR("%s: Unknown pipe %d\n", __func__, i);
		}
		if (gInfo->pipes[i] == NULL)
			ERROR("%s: Error allocating pipe %d\n", __func__, i);
		else
			gInfo->pipe_count++;
	}

	return B_OK;
}


/*! Clean up data common to both primary and cloned accelerant */
static void
uninit_common(void)
{
	intel_free_memory(gInfo->context_base);

	delete_area(gInfo->regs_area);
	delete_area(gInfo->shared_info_area);

	gInfo->regs_area = gInfo->shared_info_area = -1;

	// close the file handle ONLY if we're the clone
	if (gInfo->is_clone)
		close(gInfo->device);

	free(gInfo);
}


static void
dump_ports()
{
	if (gInfo->port_count == 0) {
		TRACE("%s: No ports connected\n", __func__);
		return;
	}

	TRACE("%s: Connected ports: (port_count: %" B_PRIu32 ")\n", __func__,
		gInfo->port_count);

	for (uint32 i = 0; i < gInfo->port_count; i++) {
		Port* port = gInfo->ports[i];
		if (!port) {
			TRACE("port %" B_PRIu32 ":: INVALID ALLOC!\n", i);
			continue;
		}
		TRACE("port %" B_PRIu32 ": %s %s\n", i, port->PortName(),
			port->IsConnected() ? "connected" : "disconnected");
	}
}


static bool
has_connected_port(port_index portIndex, uint32 type)
{
	for (uint32 i = 0; i < gInfo->port_count; i++) {
		Port* port = gInfo->ports[i];
		if (type != INTEL_PORT_TYPE_ANY && port->Type() != type)
			continue;
		if (portIndex != INTEL_PORT_ANY && port->PortIndex() != portIndex)
			continue;

		return true;
	}

	return false;
}


static status_t
probe_ports()
{
	// Try to determine what ports to use. We use the following heuristic:
	// * Check for DisplayPort, these can be more or less detected reliably.
	// * Check for HDMI, it'll fail on devices not having HDMI for us to fall
	//   back to DVI.
	// * Assume DVI B if no HDMI and no DisplayPort is present, confirmed by
	//   reading EDID in the IsConnected() call.
	// * Check for analog if possible (there's a detection bit on PCH),
	//   otherwise the assumed presence is confirmed by reading EDID in
	//   IsConnected().

	TRACE("adpa: %08" B_PRIx32 "\n", read32(INTEL_ANALOG_PORT));
	TRACE("dova: %08" B_PRIx32 ", dovb: %08" B_PRIx32
		", dovc: %08" B_PRIx32 "\n", read32(INTEL_DIGITAL_PORT_A),
		read32(INTEL_DIGITAL_PORT_B), read32(INTEL_DIGITAL_PORT_C));
	TRACE("lvds: %08" B_PRIx32 "\n", read32(INTEL_DIGITAL_LVDS_PORT));

	TRACE("dp_a: %08" B_PRIx32 "\n", read32(INTEL_DISPLAY_PORT_A));
	TRACE("dp_b: %08" B_PRIx32 "\n", read32(INTEL_DISPLAY_PORT_B));
	TRACE("dp_c: %08" B_PRIx32 "\n", read32(INTEL_DISPLAY_PORT_C));
	TRACE("dp_d: %08" B_PRIx32 "\n", read32(INTEL_DISPLAY_PORT_D));
	TRACE("tra_dp: %08" B_PRIx32 "\n", read32(INTEL_TRANSCODER_A_DP_CTL));
	TRACE("trb_dp: %08" B_PRIx32 "\n", read32(INTEL_TRANSCODER_B_DP_CTL));
	TRACE("trc_dp: %08" B_PRIx32 "\n", read32(INTEL_TRANSCODER_C_DP_CTL));

	bool foundLVDS = false;
	bool foundDP = false;
	bool foundDDI = false;

	gInfo->port_count = 0;
#if 0
	// make sure I2C hardware controller is off (we use bit-banging)
	if (gInfo->shared_info->device_type.Generation() >= 5) {
		write32(INTEL_DSPCLK_GATE_D,
			read32(INTEL_DSPCLK_GATE_D) | PCH_GMBUSUNIT_CLK_GATE_DIS);
		read32(INTEL_DSPCLK_GATE_D);

		write32(INTEL_GEN9_CLKGATE_DIS_4,
			read32(INTEL_GEN9_CLKGATE_DIS_4) | BXT_GMBUSUNIT_CLK_GATE_DIS);
		read32(INTEL_GEN9_CLKGATE_DIS_4);

		write32(INTEL_GMBUS0, 0); //reset, idle
		write32(INTEL_GMBUS4, 0); //block interrupts
	}
#endif

	// Display Port
	if (!gInfo->shared_info->device_type.HasDDI()) {
		for (int i = INTEL_PORT_A; i <= INTEL_PORT_D; i++) {
			TRACE("Probing DisplayPort %d\n", i);
			Port* displayPort = new(std::nothrow) DisplayPort((port_index)i);
			if (displayPort == NULL)
				return B_NO_MEMORY;

			if (displayPort->IsConnected()) {
				foundDP = true;
				gInfo->ports[gInfo->port_count++] = displayPort;
			} else
				delete displayPort;
		}
	}

	// Digital Display Interface (for DP, HDMI, DVI and eDP)
	if (gInfo->shared_info->device_type.HasDDI()) {
		for (int i = INTEL_PORT_A; i <= INTEL_PORT_F; i++) {
			TRACE("Probing DDI %d\n", i);

			Port* ddiPort
				= new(std::nothrow) DigitalDisplayInterface((port_index)i);

			if (ddiPort == NULL)
				return B_NO_MEMORY;

			if (ddiPort->IsConnected()) {
				foundDDI = true;
				gInfo->ports[gInfo->port_count++] = ddiPort;
			} else
				delete ddiPort;
		}
	}

#if 0
	// never execute this as the 'standard' DisplayPort class called above already handles it.
	if (!gInfo->shared_info->device_type.HasDDI()) {
		// Ensure DP_A isn't already taken
		TRACE("Probing eDP\n");
		if (!has_connected_port((port_index)INTEL_PORT_A, INTEL_PORT_TYPE_ANY)) {
			// also always try eDP, it'll also just fail if not applicable
			Port* eDPPort = new(std::nothrow) EmbeddedDisplayPort();
			if (eDPPort == NULL)
				return B_NO_MEMORY;
			if (eDPPort->IsConnected())
				gInfo->ports[gInfo->port_count++] = eDPPort;
			else
				delete eDPPort;
		}
	}
#endif

	if (!gInfo->shared_info->device_type.HasDDI()) {
		for (int i = INTEL_PORT_B; i <= INTEL_PORT_D; i++) {
			TRACE("Probing HDMI %d\n", i);
			if (has_connected_port((port_index)i, INTEL_PORT_TYPE_ANY)) {
				// Ensure port not already claimed by something like DDI
				TRACE("Port already claimed\n");
				continue;
			}

			Port* hdmiPort = new(std::nothrow) HDMIPort((port_index)i);
			if (hdmiPort == NULL)
				return B_NO_MEMORY;

			if (hdmiPort->IsConnected())
				gInfo->ports[gInfo->port_count++] = hdmiPort;
			else
				delete hdmiPort;
		}
	}

	// always try the LVDS port when chipset supports it, it'll simply fail if not applicable
	if (!gInfo->shared_info->device_type.HasDDI()) {
		TRACE("Probing LVDS\n");
		Port* lvdsPort = new(std::nothrow) LVDSPort();
		if (lvdsPort == NULL)
			return B_NO_MEMORY;
		if (lvdsPort->IsConnected()) {
			foundLVDS = true;
			gInfo->ports[gInfo->port_count++] = lvdsPort;
			gInfo->head_mode |= HEAD_MODE_LVDS_PANEL;
			gInfo->head_mode |= HEAD_MODE_B_DIGITAL;
		} else
			delete lvdsPort;
	}

	if (!gInfo->shared_info->device_type.HasDDI()) {
		if (!has_connected_port(INTEL_PORT_ANY, INTEL_PORT_TYPE_ANY)) {
			TRACE("Probing DVI\n");
			// there's neither DisplayPort nor HDMI so far, assume DVI B
			for (port_index index = INTEL_PORT_B; index <= INTEL_PORT_C;
					index = (port_index)(index + 1)) {
				Port* dviPort = new(std::nothrow) DigitalPort(index, "DVI");
				if (dviPort == NULL)
					return B_NO_MEMORY;

				if (dviPort->IsConnected()) {
					gInfo->ports[gInfo->port_count++] = dviPort;
					gInfo->head_mode |= HEAD_MODE_B_DIGITAL;
				} else
					delete dviPort;
			}
		}
	}

	// then finally always try the analog port when chipsets supports it
	if (gInfo->shared_info->device_type.Generation() <= 8
		&& gInfo->shared_info->internal_crt_support) {
		TRACE("Probing Analog\n");
		Port* analogPort = new(std::nothrow) AnalogPort();
		if (analogPort == NULL)
			return B_NO_MEMORY;
		if (analogPort->IsConnected()) {
			gInfo->ports[gInfo->port_count++] = analogPort;
			gInfo->head_mode |= HEAD_MODE_A_ANALOG;
		} else
			delete analogPort;
	}

	if (gInfo->port_count == 0)
		return B_ERROR;

	// Activate reference clocks if needed
	if (gInfo->shared_info->pch_info == INTEL_PCH_IBX
		|| gInfo->shared_info->pch_info == INTEL_PCH_CPT) {
		TRACE("Activating clocks\n");
		refclk_activate_ilk(foundLVDS || foundDP || foundDDI);
	}
	/*
	} else if (gInfo->shared_info->pch_info == INTEL_PCH_LPT) {
		// TODO: Some kind of stepped bend thing?
		// only needed for vga
		refclk_activate_lpt(foundLVDS);
	}
	*/

	TRACE("Probing complete.\n");
	return B_OK;
}


static status_t
assign_pipes()
{
	// TODO: At some point we should "group" ports to pipes with the same mode.
	// You can drive multiple ports from a single pipe as long as the mode is
	// the same. For the moment we could get displays with the wrong pipes
	// assigned when the count is > 1;

	uint32 current = 0;

	bool assigned[gInfo->pipe_count];
	memset(assigned, 0, gInfo->pipe_count);

	// Some ports need to be assigned to a fixed pipe on old hardware (or due
	// to limitations in the current driver on current hardware). Assign those
	// first
	for (uint32 i = 0; i < gInfo->port_count; i++) {
		if (!gInfo->ports[i]->IsConnected())
			continue;

		pipe_index preference = gInfo->ports[i]->PipePreference();
		if (preference != INTEL_PIPE_ANY) {
			int index = (int)preference - 1;
			if (assigned[index]) {
				TRACE("Pipe %d is already assigned, it will drive multiple "
					"displays\n", index);
			}
			gInfo->ports[i]->SetPipe(gInfo->pipes[index]);
			assigned[index] = true;
			continue;
		}
	}

	// In a second pass, assign the remaining ports to the remaining pipes
	for (uint32 i = 0; i < gInfo->port_count; i++) {
		if (gInfo->ports[i]->IsConnected() && gInfo->ports[i]->GetPipe() == NULL) {
			while (current < gInfo->pipe_count && assigned[current])
				current++;

			if (current >= gInfo->pipe_count) {
				ERROR("%s: No pipes left to assign to port %s!\n", __func__,
					gInfo->ports[i]->PortName());
				continue;
			}

			gInfo->ports[i]->SetPipe(gInfo->pipes[current]);
			assigned[current] = true;
		}
	}

	return B_OK;
}


//	#pragma mark - public accelerant functions


/*! Init primary accelerant */
status_t
intel_init_accelerant(int device)
{
	CALLED();

	status_t status = init_common(device, false);
	if (status != B_OK)
		return status;

	intel_shared_info &info = *gInfo->shared_info;

	init_lock(&info.accelerant_lock, "intel extreme accelerant");
	init_lock(&info.engine_lock, "intel extreme engine");

	setup_ring_buffer(info.primary_ring_buffer, "intel primary ring buffer");

	// Probe all ports
	status = probe_ports();

	// On TRACE, dump ports and states
	dump_ports();

	if (status != B_OK)
		ERROR("Warning: zero active displays were found!\n");

	status = assign_pipes();

	if (status != B_OK)
		ERROR("Warning: error while assigning pipes!\n");

	status = create_mode_list();
	if (status != B_OK) {
		uninit_common();
		return status;
	}

	return B_OK;
}


ssize_t
intel_accelerant_clone_info_size(void)
{
	CALLED();
	// clone info is device name, so return its maximum size
	return B_PATH_NAME_LENGTH;
}


void
intel_get_accelerant_clone_info(void* info)
{
	CALLED();
	ioctl(gInfo->device, INTEL_GET_DEVICE_NAME, info, B_PATH_NAME_LENGTH);
}


status_t
intel_clone_accelerant(void* info)
{
	CALLED();

	// create full device name
	char path[B_PATH_NAME_LENGTH];
	strcpy(path, "/dev/");
#ifdef __HAIKU__
	strlcat(path, (const char*)info, sizeof(path));
#else
	strcat(path, (const char*)info);
#endif

	int fd = open(path, B_READ_WRITE);
	if (fd < 0)
		return errno;

	status_t status = init_common(fd, true);
	if (status != B_OK)
		goto err1;

	// get read-only clone of supported display modes
	status = gInfo->mode_list_area = clone_area(
		"intel extreme cloned modes", (void**)&gInfo->mode_list,
		B_ANY_ADDRESS, B_READ_AREA, gInfo->shared_info->mode_list_area);
	if (status < B_OK)
		goto err2;

	return B_OK;

err2:
	uninit_common();
err1:
	close(fd);
	return status;
}


/*! This function is called for both, the primary accelerant and all of
	its clones.
*/
void
intel_uninit_accelerant(void)
{
	CALLED();

	// delete accelerant instance data
	delete_area(gInfo->mode_list_area);
	gInfo->mode_list = NULL;

	if (!gInfo->is_clone) {
		intel_shared_info &info = *gInfo->shared_info;
		uninit_lock(&info.accelerant_lock);
		uninit_lock(&info.engine_lock);
		uninit_ring_buffer(info.primary_ring_buffer);
	}
	uninit_common();
}


status_t
intel_get_accelerant_device_info(accelerant_device_info* info)
{
	CALLED();

	info->version = B_ACCELERANT_VERSION;

	DeviceType* type = &gInfo->shared_info->device_type;

	if (type->InFamily(INTEL_FAMILY_8xx))
		strcpy(info->name, "Intel Extreme");
	else if (type->InFamily(INTEL_FAMILY_9xx))
		strcpy(info->name, "Intel GMA");
	else if (type->InFamily(INTEL_FAMILY_SOC0))
		strcpy(info->name, "Intel Atom");
	else if (type->InFamily(INTEL_FAMILY_SER5))
		strcpy(info->name, "Intel HD/Iris");
	else
		strcpy(info->name, "Intel");

	strcpy(info->chipset, gInfo->shared_info->device_identifier);
	strcpy(info->serial_no, "None");

	info->memory = gInfo->shared_info->graphics_memory_size;
	info->dac_speed = gInfo->shared_info->pll_info.max_frequency;

	return B_OK;
}


sem_id
intel_accelerant_retrace_semaphore()
{
	CALLED();
	return gInfo->shared_info->vblank_sem;
}