Documentation / driver-api / serial / serial-iso7816.rst


Based on kernel version 6.8. Page generated on 2024-03-11 21:26 EST.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
=============================
ISO7816 Serial Communications
=============================

1. Introduction
===============

  ISO/IEC7816 is a series of standards specifying integrated circuit cards (ICC)
  also known as smart cards.

2. Hardware-related considerations
==================================

  Some CPUs/UARTs (e.g., Microchip AT91) contain a built-in mode capable of
  handling communication with a smart card.

  For these microcontrollers, the Linux driver should be made capable of
  working in both modes, and proper ioctls (see later) should be made
  available at user-level to allow switching from one mode to the other, and
  vice versa.

3. Data Structures Already Available in the Kernel
==================================================

  The Linux kernel provides the serial_iso7816 structure (see [1]) to handle
  ISO7816 communications. This data structure is used to set and configure
  ISO7816 parameters in ioctls.

  Any driver for devices capable of working both as RS232 and ISO7816 should
  implement the iso7816_config callback in the uart_port structure. The
  serial_core calls iso7816_config to do the device specific part in response
  to TIOCGISO7816 and TIOCSISO7816 ioctls (see below). The iso7816_config
  callback receives a pointer to struct serial_iso7816.

4. Usage from user-level
========================

  From user-level, ISO7816 configuration can be get/set using the previous
  ioctls. For instance, to set ISO7816 you can use the following code::

	#include <linux/serial.h>

	/* Include definition for ISO7816 ioctls: TIOCSISO7816 and TIOCGISO7816 */
	#include <sys/ioctl.h>

	/* Open your specific device (e.g., /dev/mydevice): */
	int fd = open ("/dev/mydevice", O_RDWR);
	if (fd < 0) {
		/* Error handling. See errno. */
	}

	struct serial_iso7816 iso7816conf;

	/* Reserved fields as to be zeroed */
	memset(&iso7816conf, 0, sizeof(iso7816conf));

	/* Enable ISO7816 mode: */
	iso7816conf.flags |= SER_ISO7816_ENABLED;

	/* Select the protocol: */
	/* T=0 */
	iso7816conf.flags |= SER_ISO7816_T(0);
	/* or T=1 */
	iso7816conf.flags |= SER_ISO7816_T(1);

	/* Set the guard time: */
	iso7816conf.tg = 2;

	/* Set the clock frequency*/
	iso7816conf.clk = 3571200;

	/* Set transmission factors: */
	iso7816conf.sc_fi = 372;
	iso7816conf.sc_di = 1;

	if (ioctl(fd_usart, TIOCSISO7816, &iso7816conf) < 0) {
		/* Error handling. See errno. */
	}

	/* Use read() and write() syscalls here... */

	/* Close the device when finished: */
	if (close (fd) < 0) {
		/* Error handling. See errno. */
	}

5. References
=============

 [1]    include/uapi/linux/serial.h