2 * common TPM backend driver functions
4 * Copyright (c) 2012-2013 IBM Corporation
6 * Stefan Berger <stefanb@us.ibm.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>
23 #include "qemu/thread.h"
24 #include "tpm_backend.h"
26 void tpm_backend_thread_deliver_request(TPMBackendThread
*tbt
)
28 g_thread_pool_push(tbt
->pool
, (gpointer
)TPM_BACKEND_CMD_PROCESS_CMD
, NULL
);
31 void tpm_backend_thread_create(TPMBackendThread
*tbt
,
32 GFunc func
, gpointer user_data
)
35 tbt
->pool
= g_thread_pool_new(func
, user_data
, 1, TRUE
, NULL
);
36 g_thread_pool_push(tbt
->pool
, (gpointer
)TPM_BACKEND_CMD_INIT
, NULL
);
40 void tpm_backend_thread_end(TPMBackendThread
*tbt
)
43 g_thread_pool_push(tbt
->pool
, (gpointer
)TPM_BACKEND_CMD_END
, NULL
);
44 g_thread_pool_free(tbt
->pool
, FALSE
, TRUE
);
49 void tpm_backend_thread_tpm_reset(TPMBackendThread
*tbt
,
50 GFunc func
, gpointer user_data
)
53 tpm_backend_thread_create(tbt
, func
, user_data
);
55 g_thread_pool_push(tbt
->pool
, (gpointer
)TPM_BACKEND_CMD_TPM_RESET
,